Skip to content

Commit a0ae5d4

Browse files
committed
CI: better names for job & workflow
1 parent eedb0a8 commit a0ae5d4

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
name: Build & test on ubuntu
1+
name: CI
22

33
on: [push, pull_request]
44

55
jobs:
6-
build:
6+
build_and_test:
7+
name: Build & Test
78
runs-on: ubuntu-20.04
89
steps:
910
- uses: actions/checkout@v2
@@ -20,8 +21,8 @@ jobs:
2021
- name: Test
2122
run: dotnet test --no-restore --verbosity normal
2223

23-
sanitycheck:
24-
needs: build
24+
sanity_check:
25+
needs: build_and_test
2526
runs-on: ubuntu-20.04
2627
steps:
2728
- uses: actions/checkout@v2
@@ -62,7 +63,7 @@ jobs:
6263
run: npx commitlint --from HEAD~1 --to HEAD --verbose
6364

6465
package:
65-
needs: sanitycheck
66+
needs: sanity_check
6667
runs-on: ubuntu-20.04
6768
env:
6869
BASE_VERSION: "0.12.0"

0 commit comments

Comments
 (0)