azure pipelines -> github actions

This commit is contained in:
Anthony Sottile 2022-12-29 18:11:25 -05:00
parent 66ecc5beb4
commit a13cf6492e
3 changed files with 20 additions and 25 deletions

19
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: main
on:
push:
branches: [main, test-me-*]
tags:
pull_request:
jobs:
main-windows:
uses: asottile/workflows/.github/workflows/tox.yml@v1.0.0
with:
env: '["py38"]'
os: windows-latest
main-linux:
uses: asottile/workflows/.github/workflows/tox.yml@v1.0.0
with:
env: '["py37", "py38", "py39", "py310"]'
os: ubuntu-latest