ci(make): adding the build action to my repository
This commit is contained in:
parent
6cc7e2d8b4
commit
d0ebc74b47
1 changed files with 13 additions and 0 deletions
13
.github/workflows/c-cpp.yml
vendored
Normal file
13
.github/workflows/c-cpp.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
name: C/C++ CI
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- name: make
|
||||||
|
run: TERM=xterm make
|
||||||
Loading…
Add table
Add a link
Reference in a new issue