-
Notifications
You must be signed in to change notification settings - Fork 62
52 lines (44 loc) · 1.13 KB
/
package.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
41
42
43
44
45
46
47
48
49
50
51
52
name: "Package"
on:
push:
pull_request:
workflow_dispatch:
schedule:
# Monthly on first day to capture breakage caused by dependencies
- cron: "0 23 1 * *"
defaults:
run:
shell: bash
permissions:
contents: read
concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true
jobs:
package:
name: "Python ${{ matrix.python-version }}"
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
# Available versions:
# https://github.com/actions/python-versions/blob/main/versions-manifest.json
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
fail-fast: true
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
- name: "Run make build in Docker"
uses: "addnab/docker-run-action@v3"
with:
image: "python:${{ matrix.python-version }}-alpine"
options: --rm -v ${{ github.workspace }}:/workspace
run: |
set -o errexit
apk add --no-cache bash make
cd /workspace
make build