Skip to content

[pre-commit.ci] pre-commit autoupdate (#236) #76

[pre-commit.ci] pre-commit autoupdate (#236)

[pre-commit.ci] pre-commit autoupdate (#236) #76

Workflow file for this run

---
name: Tests
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.cff'
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.8', '3.9', '3.10', '3.11']
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 .
...