Skip to content

Commit

Permalink
move lint to separate github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rrotter committed Dec 13, 2024
1 parent 1adcaae commit cc0716d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,4 @@ jobs:
- name: Run tests
run: |
docker compose --file docker-compose.test.yml build
docker compose --file docker-compose.test.yml run lint
docker compose --file docker-compose.test.yml run specs
16 changes: 16 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Run CI

on:
push:
branches: [$default-branch]
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: |
docker compose --file docker-compose.test.yml build
docker compose --file docker-compose.test.yml run lint

0 comments on commit cc0716d

Please sign in to comment.