Skip to content

Commit

Permalink
FIX: build workflow unknown job test
Browse files Browse the repository at this point in the history
  • Loading branch information
desty2k committed Oct 11, 2021
1 parent 3d7d1f2 commit 2dadc5d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Expand Up @@ -5,7 +5,7 @@ on:
branches: [ master ]

jobs:
build:
test:
name: Tests - Python ${{ matrix.python-version }} - ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}
strategy:
Expand All @@ -31,7 +31,7 @@ jobs:
TASK: ${{ matrix.tasks }}

check:
needs: [ build ]
needs: [ test ]
name: Check - ${{ matrix.tasks }}
runs-on: ${{ matrix.platform }}
strategy:
Expand All @@ -58,7 +58,7 @@ jobs:

release:
runs-on: ubuntu-latest
needs: [ build, test ]
needs: [ test, check ]
name: Publish release

steps:
Expand Down

0 comments on commit 2dadc5d

Please sign in to comment.