Skip to content

Merge pull request #279 from cta-observatory/fix_ci_warnings #218

Merge pull request #279 from cta-observatory/fix_ci_warnings

Merge pull request #279 from cta-observatory/fix_ci_warnings #218

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- '**'
pull_request:
env:
NUMBA_NUM_THREADS: 1
MPLBACKEND: Agg
PYTEST_ADDOPTS: --color=yes
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
python --version
pip install codecov pytest-cov
pip install -U pytest docutils pygments Cython matplotlib
pip install -e .
pip freeze
- name: Tests
run: |
pytest --cov=eventio --cov-report=xml
- uses: codecov/codecov-action@v3