Skip to content

Commit

Permalink
Add github action for make test (#20)
Browse files Browse the repository at this point in the history
Closes #15
  • Loading branch information
kesslern authored Oct 9, 2020
1 parent 44b92f8 commit 95d11bf
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/make-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: make-test

on:
push:
branches:
- '**'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Run Makefile
env:
TOKEN: ${{ secrets.TOKEN }}
run: make test

0 comments on commit 95d11bf

Please sign in to comment.