Skip to content

Commit c4baf31

Browse files
committed
Github workflow (Initial commit)
1 parent b2098ed commit c4baf31

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on: [push]
2+
3+
jobs:
4+
builld_and_test:
5+
runs-on: ubuntu-latest
6+
7+
steps:
8+
- uses: actions/checkout@v4
9+
10+
- name: Install dependencies
11+
run: sudo apt-get install gcc
12+
13+
- name: Build and run tests
14+
run: bash ${{github.workspace}}/tests/test.sh || exit

0 commit comments

Comments
 (0)