1
0
mirror of https://github.com/venthur/blag.git synced 2025-11-25 12:42:41 +00:00

remove fail-fast for non-matrix, seperate setup venv

This commit is contained in:
Bastian Venthur
2022-11-15 21:21:03 +01:00
parent c3993f5111
commit e168a0e0d3

View File

@@ -30,17 +30,17 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Setup virtual environment
run: |
make venv
- name: Run tests
run: |
make test
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
@@ -49,17 +49,17 @@ jobs:
with:
python-version: "3.x"
- name: Setup virtual environment
run: |
make venv
- name: Run linter
run: |
make lint
mypy:
name: mypy
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
@@ -68,6 +68,10 @@ jobs:
with:
python-version: "3.x"
- name: Setup virtual environment
run: |
make venv
- name: Run mypy
run: |
make mypy