Skip to content

Commit bc72f76

Browse files
committed
Switch to GitHub actions
1 parent 7075b80 commit bc72f76

File tree

3 files changed

+29
-39
lines changed

3 files changed

+29
-39
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build-and-test:
7+
strategy:
8+
matrix:
9+
ARCH: [x86_64, i386]
10+
BUILD_TYPE: [coverage]
11+
fail-fast: false
12+
13+
name: ${{ matrix.BUILD_TYPE }} ${{ matrix.ARCH }}
14+
runs-on: ubuntu-latest
15+
16+
env:
17+
ARCH: ${{ matrix.ARCH }}
18+
BUILD_TYPE: ${{ matrix.BUILD_TYPE }}
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
with:
23+
submodules: recursive
24+
25+
- name: Install dependencies
26+
run: sudo pip3 install -y gcovr
27+
28+
- name: Test coverage
29+
run: bash -ex ci/test-coverage.sh

.travis.yml

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

0 commit comments

Comments
 (0)