Skip to content

Commit

Permalink
Add final noop job to indicate success and set as required
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jun 16, 2022
1 parent f4ea3ec commit 6ddc77e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test
on: [push, pull_request]

jobs:
build:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
Expand Down Expand Up @@ -49,3 +49,11 @@ jobs:
uses: codecov/codecov-action@v1
with:
name: Python ${{ matrix.python-version }}

success:
needs: test
runs-on: ubuntu-latest
name: test successful
steps:
- name: Success
run: echo Test successful

0 comments on commit 6ddc77e

Please sign in to comment.