run-tests.yaml 358 B

12345678910111213141516
  1. name: run-tests
  2. on:
  3. push:
  4. schedule:
  5. - cron: '5 3 * * 0'
  6. pull_request:
  7. jobs:
  8. run-tests:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v2
  12. - run: sudo apt-get install -y valgrind
  13. - run: autoreconf -ivf
  14. - run: ./configure
  15. - run: make
  16. - run: valgrind --leak-check=full --error-exitcode=66 ./test