mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-04-19 22:10:19 +02:00
Add CI to build and test on Linux
This commit is contained in:
parent
1984cb3b3d
commit
736310da5d
1 changed files with 21 additions and 0 deletions
21
.github/workflows/build-test-linux.yml
vendored
Normal file
21
.github/workflows/build-test-linux.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
name: Build and test on Linux
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build_and_test:
|
||||||
|
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: make
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: make test
|
Loading…
Add table
Reference in a new issue