Skip to content

sync to head

sync to head #40

Workflow file for this run

name: tests
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os:
- ubuntu
- windows
- macos
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- run: python -m pip install meson-python ninja pytest
- run: python -m pip install --no-build-isolation -e .
- run: pytest beancount
if: runner.os != 'Windows'