We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59baef3 commit 2333143Copy full SHA for 2333143
.github/workflows/test.yml
@@ -0,0 +1,16 @@
1
+name: Test
2
+on:
3
+ pull_request:
4
+ branches: [ main ]
5
+jobs:
6
+ unit-test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - run: make unit-test
11
+
12
+ build:
13
14
15
16
+ - run: make build
Makefile
@@ -0,0 +1,5 @@
+unit-test:
+ echo "All awesome unit tests pass!"
+build:
+ echo "Build succeeded!"
0 commit comments