Skip to content

settings: add cache configuration (bug 1870285) #16

settings: add cache configuration (bug 1870285)

settings: add cache configuration (bug 1870285) #16

Workflow file for this run

name: Build and test
on:
pull_request:
branches:
- "**"
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m venv env
source env/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -e .
- name: Test
run: |
source env/bin/activate
lando test
pytest