T-17808/feat: Grab linear title and body from linear ref if API key i… #41
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run test | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run pytest | |
shell: bash | |
run: | | |
python3 -m venv venv | |
source venv/bin/activate | |
pip install '.[dev]' | |
coverage run -m pytest | |
coverage report -m --fail-under=95 |