Skip to content

util updatte

util updatte #34

Workflow file for this run

name: build-windows
on:
push:
branches:
- main
release:
types:
- published
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade .
- name: Test
run: |
python -m pip install --upgrade pytest
python -m pip install --upgrade pytest-cov
python -m pytest --cov-report=xml --cov=tests/
- name: Coverage
run: |
python -m pip install codecov
codecov