-
-
Notifications
You must be signed in to change notification settings - Fork 39
147 lines (125 loc) · 3.84 KB
/
Copy pathbuild.yml
File metadata and controls
147 lines (125 loc) · 3.84 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
# NB: this name is used in the status badge
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
schedule:
- cron: "0 5 * * 6" # 5:00 UTC every Saturday
jobs:
build:
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}, ${{ matrix.vcs }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
- "pypy3.11"
os:
- ubuntu-22.04 # ubuntu-latest aka ubuntu-24.04 has busted bzr
- windows-latest
vcs:
- bzr
- git
- hg
- svn
steps:
- name: Install OS-level dependencies (Linux)
# NB: at some point I'll want to switch from legacy Bazaar (apt package
# bzr) to Breezy (apt package brz). They're both available in
# ubuntu-18.04 and ubuntu-20.04.
if: runner.os == 'Linux'
run: |
sudo apt-get install -y bzr git mercurial subversion
- name: Install OS-level dependencies (Windows)
if: runner.os == 'Windows'
run: |
choco install --no-progress bzr hg svn
- name: Git clone
uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: "${{ matrix.python-version }}"
cache: pip
cache-dependency-path: |
setup.py
- name: Install Python dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools wheel
python -m pip install -U coverage pytest flake8
python -m pip install -e .[test]
- name: Run tests
shell: bash
run: |
# It is utter nonsense that I have to do this
case "$RUNNER_OS" in
Windows)
PATH=$PATH:"/c/Program Files (x86)/Bazaar"
PATH=$PATH:"/c/Program Files (x86)/Subversion/bin"
PATH=$PATH:"/c/Program Files/Mercurial"
;;
esac
set -x
git --version
hg --version
svn --version
bzr --version
coverage run -m pytest
env:
SKIP_NO_TESTS: "1"
FORCE_TEST_VCS: ${{ matrix.vcs }}
- name: Check test coverage
run: |
coverage xml
coverage report -m --fail-under=${{ runner.os == 'Windows' && '98' || matrix.vcs == 'bzr' && 99 || 100 }}
- name: Run check-manifest on itself
run: python check_manifest.py
- name: Report to coveralls
uses: coverallsapp/github-action@v2
with:
file: coverage.xml
continue-on-error: true # coveralls is unreliable
lint:
name: ${{ matrix.toxenv }}
runs-on: ubuntu-latest
strategy:
matrix:
toxenv:
- flake8
- mypy
- isort
- check-manifest
- check-python-versions
steps:
- name: Git clone
uses: actions/checkout@v6
- name: Set up Python ${{ env.default_python || '3.12' }}
uses: actions/setup-python@v6
with:
python-version: "${{ env.default_python || '3.12' }}"
- name: Pip cache
uses: actions/cache@v5
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.toxenv }}-${{ hashFiles('tox.ini', 'setup.py') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.toxenv }}-
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U setuptools wheel
python -m pip install -U tox
- name: Run ${{ matrix.toxenv }}
run: python -m tox -e ${{ matrix.toxenv }}