Skip to content

fix: dev: Correct Python package mismatch. #4

fix: dev: Correct Python package mismatch.

fix: dev: Correct Python package mismatch. #4

Workflow file for this run

---
name: CI
on:
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
REGISTRY: ghcr.io
jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Requirements
run: |
pip install -qr requirements.txt -r requirements-dev.txt
pip freeze
pip check
- name: Run Make
run: make