Skip to content

build: Add -e . to dev-requirements.txt #36

build: Add -e . to dev-requirements.txt

build: Add -e . to dev-requirements.txt #36

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"]
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@v3
with:
name: ${{ github.sha }}
path: dist/*