Skip to content

Prepare for next release #149

Prepare for next release

Prepare for next release #149

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis:latest
ports:
- 6379:6379
steps:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install development tools
run: make dev-install
- name: Run checks
run: make check
- name: Run tests
run: make pytest