-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (30 loc) · 877 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
name: CI
on:
push:
branches:
- main
- feature/*
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# https://www.python.org/downloads/
python-version: [
"3.8", # EOL: 2024-10
"3.9", # EOL: 2025-10
"3.10", # EOL: 2026-10
"3.11", # EOL: 2027-10
"3.12" # EOL: 2028-10
]
name: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v3
with:
python-version: "${{ matrix.python-version }}"
- name: CI checks
run: |
python -m pip install wheel poetry
make