Skip to content

Commit 5bddc11

Browse files
committed
migrate to github actions
1 parent 1803558 commit 5bddc11

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build and run tests
2+
run-name: Build
3+
on: [push]
4+
jobs:
5+
build:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- run: make setup
9+
- run: make install
10+
- run: make lint
11+
- run: make test
12+
- run: make enforce
13+
- run: make coveralls
14+
15+
services:
16+
redis:
17+
image: redis
18+

0 commit comments

Comments
 (0)