2025-02-09 21:36:17 +01:00
|
|
|
name: main
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [main, test-me-*]
|
2025-02-09 21:44:17 +01:00
|
|
|
tags: '*'
|
2025-02-09 21:36:17 +01:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
main-windows:
|
2025-02-09 21:46:04 +01:00
|
|
|
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.0
|
2025-02-09 21:36:17 +01:00
|
|
|
with:
|
2025-02-09 21:46:04 +01:00
|
|
|
env: '["py39"]'
|
2025-02-09 21:36:17 +01:00
|
|
|
os: windows-latest
|
|
|
|
main-linux:
|
2025-02-09 21:46:04 +01:00
|
|
|
uses: asottile/workflows/.github/workflows/tox.yml@v1.6.0
|
2025-02-09 21:36:17 +01:00
|
|
|
with:
|
2025-02-09 21:46:04 +01:00
|
|
|
env: '["py39", "py310", "py311", "py312"]'
|
2025-02-09 21:36:17 +01:00
|
|
|
os: ubuntu-latest
|