Skip to content

T-17808/feat: Grab linear title and body from linear ref if API key i… #41

T-17808/feat: Grab linear title and body from linear ref if API key i…

T-17808/feat: Grab linear title and body from linear ref if API key i… #41

Workflow file for this run

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