-
Notifications
You must be signed in to change notification settings - Fork 5
75 lines (70 loc) · 1.96 KB
/
python-package.yml
File metadata and controls
75 lines (70 loc) · 1.96 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
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Lint
run: |
make test-format
- name: Test
run: |
make test-python
- name: Check Types
run: |
make test-pyre
- name: Test Build
run: |
poetry build
test-e2e:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.13"]
tf-version:
- "opentofu@v1.10.5"
- "opentofu@v1.9.3"
e2e-project:
- "mathprovider"
needs: build
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
working-directory: e2e/${{ matrix.e2e-project }}
run: |
poetry install
- name: Install ${{ matrix.tf-version }}
working-directory: e2e/${{ matrix.e2e-project }}
run: |
poetry run e2e-tool install ${{matrix.tf-version}}
- name: Run E2E Tests
working-directory: e2e/${{ matrix.e2e-project }}
run: |
poetry run e2e-tool run --tf ${{matrix.tf-version}}