Skip to content

Bump the minor-and-patch group across 1 directory with 6 updates #88

Bump the minor-and-patch group across 1 directory with 6 updates

Bump the minor-and-patch group across 1 directory with 6 updates #88

Workflow file for this run

name: Test
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- "master"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
name: Run tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.13"
cache: "pip"
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-dev.txt
- name: Run tests
run: |
make development
source virtualenv_run/bin/activate
make test