Skip to content

Commit 55349b8

Browse files
Replace Travis-CI with GitHub Workflows
1 parent 548e76f commit 55349b8

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
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
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

.travis.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)