Skip to content

ci: Add job to publish wheels on PyPI when tagging a release #614

ci: Add job to publish wheels on PyPI when tagging a release

ci: Add job to publish wheels on PyPI when tagging a release #614

Workflow file for this run

name: test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
- '3.13'
beancount:
- '~= 2.3.6'
- '@ git+https://github.com/beancount/beancount.git'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
- run: pip install 'beancount ${{ matrix.beancount }}'
- run: pip install -r requirements.txt
- run: python -m unittest discover -p '*_test.py'