-
Notifications
You must be signed in to change notification settings - Fork 32
40 lines (38 loc) · 1000 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: main
on:
push:
branches: [master, main]
tags:
pull_request:
jobs:
main:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: ['pypy3.9', '3.8', '3.9', '3.10', '3.11', '3.12']
toxenv: [py]
include:
# windows
- os: windows-latest
python: '3.12'
toxenv: py
# typing
- os: ubuntu-latest
python: '3.8'
toxenv: typing
# misc
- os: ubuntu-latest
python: '3.12'
toxenv: docs
- os: ubuntu-latest
python: '3.12'
toxenv: pre-commit
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5
with:
python-version: ${{ matrix.python }}
- run: python -mpip install --upgrade setuptools pip tox virtualenv
- run: tox -e ${{ matrix.toxenv }}