Skip to content

Merge pull request #47 from ayasyrev/dev_0.2.5 #93

Merge pull request #47 from ayasyrev/dev_0.2.5

Merge pull request #47 from ayasyrev/dev_0.2.5 #93

Workflow file for this run

name: Tests
on:
push:
branches:
- dev
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@main
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python }}
architecture: x64
- name: Install
run: |
pip install uv
uv pip install --system .[test] "coverage[toml]"
- name: Tests
run: pytest --cov
- name: Coverage
if: ${{ matrix.python == '3.11' }}
uses: codecov/codecov-action@main
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ayasyrev/argparsecfg