Skip to content

Commit

Permalink
Replace Travis with GitHub Actions (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenmathieson authored Jul 21, 2023
1 parent 8a5cca3 commit b8537f7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Tests

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt install -y valgrind
- run: make test
- run: valgrind --leak-check=full --error-exitcode=5 ./test
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

0 comments on commit b8537f7

Please sign in to comment.