GitHub workflows configuration
This commit is contained in:
parent
25d1224ae2
commit
69b3be605c
18
.github/workflows/c-cpp.yml
vendored
Normal file
18
.github/workflows/c-cpp.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
name: C/C++ CI
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install -y clang-tools check
|
||||
- name: make
|
||||
run: make
|
||||
- name: make test
|
||||
run: make test
|
||||
|
Loading…
Reference in New Issue
Block a user