hardened_malloc/.github/workflows/build-and-test.yml
jvoisin 2b25c791ee Run the CI every day at 2am UTC
This should help to catch issues in newer versions
of distributions/packages.
2021-12-26 17:02:51 -05:00

21 lines
380 B
YAML

name: Build and run tests
on:
push:
pull_request:
schedule:
- cron: '0 2 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: make test
build-ubuntu-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: CC=clang CXX=clang++ make test