-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (34 loc) · 1.01 KB
/
tests_python312.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
---
name: Test Python312
on: workflow_dispatch
jobs:
build:
name: ${{ matrix.os }}-Python${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.12']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: venv activate Ubuntu/macOS
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
run: |
python -m venv venv-acro
source ./venv-acro/bin/activate
- name: venv activate Windows
if: ${{ matrix.os == 'windows-latest' }}
run: |
python -m venv venv-acro
venv-acro\Scripts\activate.bat
- name: Install acro and pytest
run: python -m pip install . pytest
- name: Run pytest
run: python -m pytest .
...