Skip to content

release 2.7.0

release 2.7.0 #694

Workflow file for this run

name: build
on:
push:
branches:
- main
tags:
- v*
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Ensure latest pip
run: python -m pip install --upgrade pip
- name: Install hatch
run: |
pip install hatch==1.14.0
pip install .
- name: Run tests
run: hatch run test:cov
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml