simplify workflow #1743
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check, test and release | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
release: | |
types: | |
- published | |
schedule: | |
- cron: '0 7 * * 1' # M H d m w (Mondays at 7:00) | |
workflow_dispatch: | |
env: | |
FORCE_COLOR: 1 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
test: | |
timeout-minutes: 10 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python: ["3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
cache: 'pip' | |
cache-dependency-path: 'pyproject.toml' | |
- run: pip install .[dev] | |
- uses: pre-commit/[email protected] | |
- name: Run tests | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Olivaw" | |
pytest | |
env: | |
GITHUB_MATRIX_OS: ${{ matrix.os }} | |
GITHUB_MATRIX_PYTHON: ${{ matrix.python }} | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: false | |
token: ${{ secrets.CODECOV_TOKEN }} | |
deploy: | |
name: PyPI Deploy | |
environment: | |
name: pypi | |
url: https://pypi.org/p/gto | |
permissions: | |
contents: read | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- run: pip install build twine | |
- run: python -m build | |
- run: twine check --strict dist/* | |
- if: github.event_name == 'release' | |
uses: pypa/gh-action-pypi-publish@release/v1 |