Skip to content

Remove get_status method #7

Remove get_status method

Remove get_status method #7

Workflow file for this run

name: Continuous Integration
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install Dependencies
run: |
pip3 install -e ".[dev]"
- name: Run pre-commit
run: pre-commit run --all-files
- name: Run Pytest
run: pytest