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.
1 parent a0c715c commit f5a464eCopy full SHA for f5a464e
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
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:latest
15
+ strategy:
16
+ matrix:
17
+ os:
18
+ - ubuntu-latest
19
+ abc:
20
+ - name: CPython 3.6
21
+ toxenv: py36,report,codecov
22
+ - name: CPython 3.7
23
+ toxenv: py37,report,codecov
24
+ steps:
25
+ - uses: actions/checkout@v1
26
+ - run: |
27
+ pip install tox
28
+ tox -v -e "${{ matrix.abc.toxenv }}"
0 commit comments