Skip to content

v0.0.3

v0.0.3 #62

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: CI
on:
push:
branches:
- "main"
- "master"
pull_request:
branches:
- "**"
workflow_dispatch:
release:
types: [published, edited]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
- uses: pre-commit/[email protected]
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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
python -m pip install tox tox-gh-actions
- name: Cache tox environments
id: cache-tox
uses: actions/cache@v4
with:
path: .tox
# setup.py and setup.cfg have versioning info that would impact the
# tox environment. hashFiles only takes a single file path or pattern
# at the moment.
key: ${{ runner.os }}-${{ matrix.python-version }}-tox-${{ hashFiles('setup.py') }}-${{ hashFiles('setup.cfg') }} }}
- name: Test with tox
run: tox
- uses: codecov/codecov-action@v4
env:
token: ${{ secrets.CODECOV_TOKEN }}
with:
verbose: true