Skip to content

Commit

Permalink
Add intermediate job with a simpler name (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Feb 19, 2021
1 parent d971692 commit 77a2300
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,17 @@ jobs:
env:
MASTER: ${{ matrix.MASTER }}

release:
# job whose name doesn't change when we bump Scala versions, add OSes, …
# We require this job for auto-merge.
all-tests:
needs: test
runs-on: ubuntu-latest
steps:
- run: true
shell: bash

release:
needs: all-tests
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 77a2300

Please sign in to comment.