Skip to content

Fixes to docs for v1 release (#345) #577

Fixes to docs for v1 release (#345)

Fixes to docs for v1 release (#345) #577

Workflow file for this run

name: WallGo main tests
on:
push:
# Note that this workflow is in a separate file from tests.yml so that
# it can be separated out, and used for the [passing] badge on the README.md
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
# If true, Github will cancel all other jobs in the matrix if any of them fails
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install WallGo Python package
run: pip install .[tests]
- name: Test with pytest
run: pytest -vs