Skip to content

fix: remove deprecated type #3

fix: remove deprecated type

fix: remove deprecated type #3

Workflow file for this run

name: actions
on:
push:
pull_request:
branches:
- $default-branch
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -r requirements_ci.txt
- run: python -m coverage run --branch --source . -m unittest -v
- run: python -m coverage report --show-missing
- run: codecov