2021-04-29 21:03:12 +00:00
|
|
|
name: C/C++ CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2021-04-29 21:05:48 +00:00
|
|
|
branches: [ master ]
|
2021-04-29 21:03:12 +00:00
|
|
|
pull_request:
|
2021-04-29 21:05:48 +00:00
|
|
|
branches: [ master ]
|
2021-04-29 21:03:12 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
|
2021-04-30 13:47:08 +00:00
|
|
|
runs-on: ubuntu-18.04
|
2021-04-29 21:03:12 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-29 21:10:56 +00:00
|
|
|
- name: install deps
|
2021-04-30 13:42:19 +00:00
|
|
|
run: sudo apt update && sudo apt install libpthread-stubs0-dev libc6
|
2021-04-29 21:03:12 +00:00
|
|
|
- name: make test
|
|
|
|
run: make test
|
|
|
|
- name: run tests
|
|
|
|
run: ./test
|