CI Fixes 2
CI / lint (push) Failing after 4s
CI / test (push) Successful in 18s

This commit is contained in:
Logan
2026-04-21 00:51:12 -04:00
parent 2b8578a1c4
commit c5984f6318
4 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
with:
registry: git.vpn.cusano.net
username: ${{ gitea.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ gitea.token }}
- name: Get version
id: meta
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
with:
registry: git.vpn.cusano.net
username: ${{ gitea.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ gitea.token }}
- name: Get version
id: meta
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
with:
registry: git.vpn.cusano.net
username: ${{ gitea.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ gitea.token }}
- name: Validate build configuration
uses: docker/build-push-action@v6
+2 -2
View File
@@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install dependencies
run: python3 -m pip install -r requirements.txt pytest
run: python3 -m pip install --break-system-packages -r requirements.txt pytest
- name: Run tests
run: python3 -m pytest tests -v
@@ -26,5 +26,5 @@ jobs:
- name: Lint
run: |
python3 -m pip install flake8
python3 -m pip install --break-system-packages flake8
python3 -m flake8 drb-edge-node/app --max-line-length=120