Skip to content

Commit 7ca1e23

Browse files
authored
Merge pull request #70 from altendky/github_actions_hydra
First draft of GitHub actions with hydra
2 parents 4af9aea + 0a1e646 commit 7ca1e23

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
33+
tox -v -e "${{ matrix.toxenv }}"

0 commit comments

Comments
 (0)