Skip to content

Package Update: Bump ruff from 0.0.290 to 0.1.1 #189

Package Update: Bump ruff from 0.0.290 to 0.1.1

Package Update: Bump ruff from 0.0.290 to 0.1.1 #189

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