Skip to content

test

test #285

Workflow file for this run

name: test
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -q pdm
rm -f .pdm-python
make install
- name: Lint
run: make lint
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
ls -la
pip install -q pdm
pdm config
rm -f .pdm-python
make install
- name: Run tests
run: make test
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install -q pdm
rm -f .pdm-python
make install
- name: Generate coverage report
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true