Skip to content

Package Update: Bump black from 23.9.1 to 24.1.1 #213

Package Update: Bump black from 23.9.1 to 24.1.1

Package Update: Bump black from 23.9.1 to 24.1.1 #213

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python latest
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements.txt
- name: Test with pytest
run: make test