Skip to content

Commit f5a464e

Browse files
committed
First draft of GitHub actions with hydra
1 parent a0c715c commit f5a464e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)