Skip to content

release: update changelog, bump version to 1.2.10 #45

release: update changelog, bump version to 1.2.10

release: update changelog, bump version to 1.2.10 #45

Workflow file for this run

on: ["push", "pull_request"]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: main workflow
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install Tox
run: pip install tox wheel
- name: Run Tox
run: tox -e lint
core:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-minor: [10, 11, 12]
steps:
- uses: actions/checkout@v2
- name: Setup Python 3.${{ matrix.python-minor }}
uses: actions/setup-python@v2
with:
python-version: 3.${{ matrix.python-minor }}
- name: Install Tox
run: pip install tox wheel
- name: Run Tox
run: tox -e py3${{ matrix.python-minor }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
fail_ci_if_error: true