We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4af9aea + 0a1e646 commit 7ca1e23Copy full SHA for 7ca1e23
.github/workflows/ci.yml
@@ -0,0 +1,33 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ tags:
8
+ - v*
9
+ pull_request:
10
11
+jobs:
12
+ ci:
13
+ runs-on: ${{ matrix.os }}
14
+ container: docker://altendky/hydra:ubuntu-3-minors
15
+ strategy:
16
+ matrix:
17
+ os:
18
+ - ubuntu-latest
19
+ toxenv:
20
+ - py36,report,codecov
21
+ - py37,report,codecov
22
+ - py38,report,codecov
23
+ - pypy3,report,codecov
24
+ - doc
25
+ - check
26
+ steps:
27
+ - uses: actions/checkout@v1
28
+ - name: Install
29
+ run: |
30
+ pip install tox
31
+ - name: Test
32
33
+ tox -v -e "${{ matrix.toxenv }}"
0 commit comments