Update CI file. #593
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |