Skip to content

Test suite is passing #24

Test suite is passing

Test suite is passing #24

name: dtocean-dummy-module actions
on:
push:
branches: [ next ]
paths:
- '.codecov.yml'
- '.github/workflows/dtocean-dummy-module.yml'
- 'packages/dtocean-dummy-module/**'
- 'packages/polite-config/**'
pull_request:
branches: [ next ]
paths:
- '.codecov.yml'
- '.github/workflows/dtocean-dummy-module.yml'
- 'packages/dtocean-dummy-module/**'
- 'packages/polite-config/**'
jobs:
pytest:
name: Unit tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest]
defaults:
run:
working-directory: packages/dtocean-dummy-module
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install package
run: |
poetry install --with test
- name: Run tests
run: |
poetry run pytest --cov src --cov-report=xml tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
flags: dtocean-dummy-module
audit:
name: Code audit
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/dtocean-dummy-module
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Install package
run: |
poetry install --with audit
- name: Run ruff
run: |
poetry run ruff check --output-format github
- name: Run pyright
run: |
poetry run pyright src