Skip to content

Persist shared parameters across URL and session #18

Persist shared parameters across URL and session

Persist shared parameters across URL and session #18

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Compile sources
run: python -m py_compile $(git ls-files '*.py')
- name: Run tests
run: pytest -q