We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c36b37 + b674204 commit 300361cCopy full SHA for 300361c
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: CI
2
+on: [push, pull_request]
3
+jobs:
4
+ test:
5
+ strategy:
6
+ matrix:
7
+ version: [2.7, 3.8]
8
+ name: Test
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Install host dependencies
12
+ run: sudo apt update && sudo apt install -y libarchive-dev python${{ matrix.version }}-dev
13
+
14
+ - name: Setup python
15
+ uses: actions/setup-python@v4
16
+ with:
17
+ python-version: ${{ matrix.version }}
18
19
+ - name: Check out code
20
+ uses: actions/checkout@v3
21
22
+ - name: Build the library
23
+ env:
24
+ PYVER: ${{ matrix.version }}
25
+ run: make build
26
27
+ - name: Run tests
28
+ run: make test
.travis.yml
0 commit comments