-
Notifications
You must be signed in to change notification settings - Fork 9
44 lines (39 loc) · 1 KB
/
python-app.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
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: TestAll
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
test:
name: "test ${{ matrix.py }} - ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os:
# - ubuntu-latest
- ubuntu-20.04
# - windows
# - MacOs
py:
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "3.7"
- "3.6"
steps:
- uses: actions/checkout@v4
- name: Setup python for test ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Initialize
run: make init
- name: Setup test suite
run: make test