Compare commits

...

2 commits

Author SHA1 Message Date
da73e5b022
Fix PATH
Some checks failed
CI / test (push) Failing after 32s
2025-11-13 14:09:01 +11:00
13916025fd
on push only 2025-11-13 14:07:37 +11:00

View file

@ -2,7 +2,6 @@ name: CI
on:
push:
pull_request:
jobs:
test:
@ -25,13 +24,13 @@ jobs:
- name: Install project deps (including test extras)
env:
PATH: "$PATH:/root/.local/bin"
PATH: ${{ env.PATH }}:/root/.local/bin
run: |
poetry install --with test
- name: Run test script
env:
PATH: "$PATH:/root/.local/bin"
PATH: ${{ env.PATH }}:/root/.local/bin
run: |
chmod +x ./tests.sh
./tests.sh