Skip to content

Commit 2333143

Browse files
committed
Add dummy tests and workflows for the tests
Signed-off-by: Masaki Kimura <[email protected]>
1 parent 59baef3 commit 2333143

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.github/workflows/test.yml

+16
Original file line numberDiff line numberDiff line change
@@ -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+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
- run: make build

Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
unit-test:
2+
echo "All awesome unit tests pass!"
3+
4+
build:
5+
echo "Build succeeded!"

0 commit comments

Comments
 (0)