-
Notifications
You must be signed in to change notification settings - Fork 74
72 lines (61 loc) · 1.78 KB
/
build-and-test.yaml
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false # run all tests anyway
matrix:
include:
# Python 3.8 && Pytest 6.2
- toxenv: py38-pytest62-supported-xdist
python: 3.8
# Latest Python & Pytest
- toxenv: py312-pytest_latest-supported-xdist
python: 3.12
# QA
- toxenv: qa
python: 3.8
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
cache-dependency-path: |
setup.py
tox.ini
- name: Install requirements
run: |
pip install -U tox
- name: Test
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
deploy:
name: Deploy
environment: Deployment
needs: test
runs-on: ubuntu-22.04
if: github.ref=='refs/heads/main' && github.event_name!='pull_request'
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Check release
id: check_release
run: |
python -m pip install poetry githubrelease httpx==0.18.2 autopub twine wheel
echo "release=$(autopub check)" >> $GITHUB_OUTPUT
- name: Publish
if: ${{ steps.check_release.outputs.release=='' }}
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
TWINE_USERNAME: "__token__"
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
git remote set-url origin https://[email protected]/${{ github.repository }}
autopub deploy