Skip to content

additional tests

additional tests #4

Workflow file for this run

# This workflow will installs Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# This workflow should be changed according to the project's needs.
name: tests
on:
pull_request:
branches:
- main
- develop
jobs:
style:
runs-on: ubuntu-latest
steps:

Check failure on line 16 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11
- name: Install tox
run: pip install tox
- name: Style check
run: |
black --check .
ruff .
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9, 3.11]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Toxit
run: tox -e py -v
- name: coverage xml
run: .tox/py/bin/coverage xml
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true