-
Notifications
You must be signed in to change notification settings - Fork 10
51 lines (47 loc) · 1.23 KB
/
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
name: test
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
unit:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
include:
- os: macos-13
python-version: '3.11'
- os: macos-14
python-version: '3.11'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
# see https://github.com/actions/runner-images/issues/9256
- name: Fix pipx permissions
if: matrix.os == 'macos-14'
run: |
for d in "$PIPX_HOME" "$PIPX_BIN_DIR" ; do
if [[ -n "$d" ]] ; then
sudo mkdir -p "$d"
sudo chown -R $(id -u) "$d"
fi
done
- name: Install Hatch
run: pipx install hatch
- name: Run tests
run: hatch run +py=${{ matrix.python-version }} cov