Skip to content

Commit bf4d6bb

Browse files
authored
Merge pull request #62 from mayankshah1607/sanity-gh-actions
CI: Add GH Actions for sanity tests
2 parents d349377 + c8f2cd1 commit bf4d6bb

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/sanity.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Sanity Tests
2+
on:
3+
push:
4+
branches: [ master ]
5+
pull_request:
6+
branches: [ master ]
7+
jobs:
8+
test:
9+
name: Sanity tests
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout code
13+
uses: actions/checkout@v2
14+
- name: Run tests
15+
run: |
16+
make sanity-test

0 commit comments

Comments
 (0)