-
Notifications
You must be signed in to change notification settings - Fork 9
63 lines (52 loc) · 1.57 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: CI
on: [push, pull_request]
env:
NUMBA_NUM_THREADS: 1
MPLBACKEND: Agg
PYTEST_ADDOPTS: --color=yes
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
ctapipe-version: [v0.12.0]
extra-args: ['codecov']
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set python version ${{ matrix.python-version }}
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
sed -i -e "s/- python.*/- python=$PYTHON_VERSION/g" environment.yml
echo "Resulting environment file:"
cat environment.yml
- name: Create and activate env
uses: mamba-org/provision-with-micromamba@v14
with:
environment-name: magicio
environment-file: environment.yml
cache-downloads: true
- name: Install dependencies
env:
CTAPIPE_VERSION: ${{ matrix.ctapipe-version }}
run: |
python --version
pip install -e .
pip install pytest-cov "ctapipe==$CTAPIPE_VERSION"
pip install pyflakes
ctapipe-info --version | grep "$CTAPIPE_VERSION"
git describe --tags
- name: Static codechecks
run: |
pyflakes magicctapipe
- name: Tests
env:
MAGIC_CTA_DATA_USER: ${{ secrets.magic_cta_data_user }}
MAGIC_CTA_DATA_PASSWORD: ${{ secrets.magic_cta_data_password }}
run: |
coverage run -m pytest -v
coverage xml
- uses: codecov/codecov-action@v3