We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7731fe2 commit c0a2d18Copy full SHA for c0a2d18
.github/workflows/ci.yml
@@ -37,14 +37,14 @@ jobs:
37
cache-from: type=gha
38
cache-to: type=gha,mode=max
39
- name: Start Docker containers
40
- run: uv run ./cli.py compose-up --no-build
+ run: uv run ./cli.py compose-up -- --no-build
41
- name: Run linting
42
# https://github.com/actions/runner/issues/241#issuecomment-745902718
43
shell: 'script -q -e -c "bash {0}"'
44
run: uv run ./cli.py lint
45
- name: Run tests
46
47
- run: uv run ./cli.py test --cov
+ run: uv run ./cli.py test -- --cov
48
- name: Stop Docker containers
49
if: ${{ always() }}
50
run: uv run ./cli.py compose-down
0 commit comments