We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eedb0a8 commit a0ae5d4Copy full SHA for a0ae5d4
.github/workflows/ci.yml
@@ -1,9 +1,10 @@
1
-name: Build & test on ubuntu
+name: CI
2
3
on: [push, pull_request]
4
5
jobs:
6
- build:
+ build_and_test:
7
+ name: Build & Test
8
runs-on: ubuntu-20.04
9
steps:
10
- uses: actions/checkout@v2
@@ -20,8 +21,8 @@ jobs:
20
21
- name: Test
22
run: dotnet test --no-restore --verbosity normal
23
- sanitycheck:
24
- needs: build
+ sanity_check:
25
+ needs: build_and_test
26
27
28
@@ -62,7 +63,7 @@ jobs:
62
63
run: npx commitlint --from HEAD~1 --to HEAD --verbose
64
65
package:
- needs: sanitycheck
66
+ needs: sanity_check
67
68
env:
69
BASE_VERSION: "0.12.0"
0 commit comments