Skip to content

Commit 9d9d23e

Browse files
Setup CI (#10)
1 parent 4d53e86 commit 9d9d23e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test
2+
3+
on: [push]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
compiler: [gcc, clang]
11+
steps:
12+
- uses: actions/checkout@v4
13+
- run: |
14+
sudo apt-get update
15+
sudo apt-get install -y build-essential libcurl4-gnutls-dev
16+
- env:
17+
CC: ${{ matrix.compiler }}
18+
run: make test
19+
20+
test-macos:
21+
runs-on: macos-latest
22+
steps:
23+
- uses: actions/checkout@v4
24+
- run: make test

0 commit comments

Comments
 (0)