add decorator idx to decorator event #267
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: pyccolo | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ 'macos-latest', 'ubuntu-latest', 'windows-latest' ] | |
python-version: [ '3.7.x', '3.8.x', '3.9.x', '3.10.x' ] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[test] | |
- name: Lint with ruff | |
run: make lint | |
- name: Run unit tests with pytest (skip typechecking, coverage) | |
if: matrix.os == 'windows-latest' | |
run: pytest | |
- name: Run typechecking with mypy and unit tests with pytest (skip coverage) | |
if: matrix.os == 'macos-latest' | |
run: | | |
make typecheck | |
pytest | |
- name: Run typechecking with mypy and unit tests with pytest (including coverage) | |
if: matrix.os == 'ubuntu-latest' | |
run: make check_ci | |
- name: Upload coverage report | |
if: matrix.os == 'ubuntu-latest' | |
uses: codecov/codecov-action@v1 | |
with: | |
token: '${{ secrets.CODECOV_TOKEN }}' | |
files: ./coverage.xml | |
env_vars: PYTHON | |
name: codecov-umbrella | |
fail_ci_if_error: true | |
verbose: true |