Correctie workflow: Checkout na install node
Some checks failed
build / testRockylinux8 (push) Failing after 12s
build / testRockylinux9 (push) Failing after 11s
build / testUbuntu22 (push) Failing after 42s
build / testFedoraBuilder (push) Successful in 3m35s
build / buildAndPublish (push) Has been skipped

This commit is contained in:
2025-01-12 00:14:22 +01:00
parent dea09ee82c
commit 45f45ae509

View File

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