diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 779b413..d960081 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -14,8 +14,6 @@ jobs: testRockylinux8: runs-on: rockylinux8 steps: - - name: Check out repository code - uses: actions/checkout@v3 - name: add ca run: | curl -o /etc/pki/ca-trust/source/anchors/ca-marceln.org.crt \ @@ -34,13 +32,13 @@ jobs: python36 python38 python39 python3.11 python3.12 \ python3.11-pip python3.12-pip pip-3 install tox + - name: Check out repository code + uses: actions/checkout@v3 - name: Test run: tox -e py36,py38,py39,p311 testRockylinux9: runs-on: rockylinux9 steps: - - name: Check out repository code - uses: actions/checkout@v3 - name: add ca run: | curl -o /etc/pki/ca-trust/source/anchors/ca-marceln.org.crt \ @@ -59,17 +57,19 @@ jobs: python39 python3.11 python3.12 \ python3-pip python3.11-pip python3.12-pip pip-3 install tox + - name: Check out repository code + uses: actions/checkout@v3 - name: Test run: tox -e py39,py311,py312 testUbuntu22: runs-on: ubuntu-22.04 steps: - - name: Check out repository code - uses: actions/checkout@v3 - name: Setup run: | apt update apt install git nodejs python3 python3-pip tox + - name: Check out repository code + uses: actions/checkout@v3 - name: Test run: tox -e py310 buildAndPublish: