hardened_malloc/.github/workflows/build-and-test.yml

22 lines
380 B
YAML
Raw Normal View History

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
2021-12-26 21:58:19 +01:00
build-ubuntu-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: CC=clang CXX=clang++ make test