Skip to content

Commit

Permalink
Merge pull request #4 from wpoely86/actions
Browse files Browse the repository at this point in the history
add gh action for tests
  • Loading branch information
smoors authored Jul 6, 2021
2 parents 7eb3746 + 9198101 commit 0c21773
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Run tests
on: [push, pull_request]

jobs:
make_test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: run autogen
run: ./autogen.sh
- name: run configure
run: ./configure
- name: run tests
run: make test

0 comments on commit 0c21773

Please sign in to comment.