Skip to content

Merge pull request #312 from giffels/update-citation-cff #623

Merge pull request #312 from giffels/update-citation-cff

Merge pull request #312 from giffels/update-citation-cff #623

Workflow file for this run

name: Static Checks
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[contrib]
- name: Lint with flake8
run: |
flake8 tardis tests setup.py
- name: Format with black
run: |
black tardis tests setup.py --diff --check --target-version py36