Skip to content

chore: downgrade to python 3.12 #257

chore: downgrade to python 3.12

chore: downgrade to python 3.12 #257

Workflow file for this run

name: CI
on:
push:
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install pipenv and project dependencies
run: |
python -m pip install --upgrade pipenv
pipenv install --dev --pre
- name: Run code linter and formatter
run: |
make ci