Skip to content

Merge branch 'fix-release-action' of 'https://github.com/jjmerchante/… #156

Merge branch 'fix-release-action' of 'https://github.com/jjmerchante/…

Merge branch 'fix-release-action' of 'https://github.com/jjmerchante/… #156

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # 3.1.0
with:
fetch-depth: 10 # fetch all tags and branches
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@13ae5bb136fac2878aff31522b9efb785519f984 # v4.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install and set up Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "PATH=$HOME/.poetry/bin:$PATH" >> $GITHUB_ENV
- name: Install dependencies
run: |
poetry install -vvv
poetry add -D coverage
- name: Lint with flake8
run: |
poetry run flake8
- name: Tests and coverage
run: |
poetry run coverage run --source=release_tools tests/run_tests.py
poetry run coverage report -m
poetry run coverage xml
- name: Send coverage report to codecov
uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # v3.1.1
with:
file: ./coverage.xml
fail_ci_if_error: true