mirror of https://github.com/stijndcl/didier
Change action to run everything in parallel with testing
parent
de0d543bf8
commit
3d1aabf77c
|
@ -42,7 +42,7 @@ jobs:
|
|||
- name: Run Pytest
|
||||
run: pytest tests
|
||||
linting:
|
||||
needs: [tests]
|
||||
needs: [dependencies]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -62,7 +62,7 @@ jobs:
|
|||
- name: Linting
|
||||
run: pylint didier database
|
||||
typing:
|
||||
needs: [tests]
|
||||
needs: [dependencies]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -82,7 +82,7 @@ jobs:
|
|||
- name: Typing
|
||||
run: mypy didier database
|
||||
formatting:
|
||||
needs: [tests]
|
||||
needs: [dependencies]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in New Issue