Run publish-check in parallel with other jobs (#922)

I don't see the reason why publish-check has to wait for the other jobs to complete. After all, it's yet another "lint".
Running it in parallel might shave of a significant amount of time from our CI builds.
This commit is contained in:
Matthias Endler 2023-01-17 15:02:30 +01:00 committed by GitHub
parent ece8b7310f
commit 1c297b43be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -50,9 +50,6 @@ jobs:
args: --all-targets -- --deny warnings
publish-check:
needs:
- test
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1