Skip to content

Bump the all-dependencies group with 2 updates #5

Bump the all-dependencies group with 2 updates

Bump the all-dependencies group with 2 updates #5

Workflow file for this run

name: Run CI checks
on: pull_request
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: make install
- name: Run linting and formatting checks
run: make lint
unit-tests:
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Run unit tests
run: make test
functional-tests:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: make install
- name: Run kinto
run: make run-kinto & sleep 5
- name: Run functional tests
run: make functional