Skip to content

Commit 2dd718a

Browse files
authored
Merge pull request #2 from Rax-x/feature/setup-ci/cd
Create c-cpp.yml
2 parents 95d9c6c + 4602b13 commit 2dd718a

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/c-cpp.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: C/C++ CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- name: Install gcc and make
11+
run: |
12+
sudo apt -y install build-essential > /dev/null
13+
- name: Run tests
14+
run: make test

0 commit comments

Comments
 (0)