Skip to content

chore: align pre-commit hooks and run with --all-files (#9) #48

chore: align pre-commit hooks and run with --all-files (#9)

chore: align pre-commit hooks and run with --all-files (#9) #48

Workflow file for this run

# .github/workflows/build.yaml
name: mysql-context-manager CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
experimental: [false]
include:
- python-version: "3.13-dev"
os: ubuntu-latest
experimental: true
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
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: Run tox
run: tox
continue-on-error: ${{ matrix.experimental }}
- name: upload coverage to Codecov
if: "matrix.python-version == '3.12'"
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true