Skip to content

add citation and paper (#62) #188

add citation and paper (#62)

add citation and paper (#62) #188

Workflow file for this run

name: Lint
on:
# Trigger the workflow on push or pull request,
# but only for the main and develop branches
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
architecture: "x64"
- name: pre-commit-run
run: |
pip install pre-commit
pre-commit run --all-files