Skip to content

release: 0.3.1

release: 0.3.1 #88

Workflow file for this run

on:
pull_request:
push:
branches: [main, release/**, test-me-*]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: pip install -r dev-requirements.txt
- run: PYTEST_SENTRY_ALWAYS_REPORT=1 pytest tests
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- run: |
pip install build
python -m build
- uses: actions/upload-artifact@v4
with:
name: ${{ github.sha }}
path: dist/*