Skip to content

new version: 1.0.10 #41

new version: 1.0.10

new version: 1.0.10 #41

Workflow file for this run

name: Publish Test Coverage
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest]
python-version: ['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: |
python -m pip install --upgrade pip setuptools wheel
pip install poetry
poetry install
- name: Run Tests
run: poetry run python -m scripts.coverage
- name: Publish Coverage
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}