Skip to content

Commit

Permalink
updated docker-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
im-niber committed Aug 13, 2024
1 parent cbe42f6 commit 7f8f013
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/ci-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,21 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Run lint and type checks
- name: Run type checks
run: |
docker compose run --rm app sh -c "mypy . && ruff check . && ruff format"
docker compose run --rm app sh -c "mypy ."
- name: Run Ruff format
run: |
docker compose run --rm app sh -c "ruff format"
- name: debug test
run : |
docker compose run --rm app sh -c "ls -al"
- name: Run Ruff Check
run: |
docker compose run --rm app sh -c "ruff check"
- name: Run tests
run: |
Expand Down

0 comments on commit 7f8f013

Please sign in to comment.