Skip to content

Merge pull request #88 from fangohr/update-to-octopus-13.0 #8

Merge pull request #88 from fangohr/update-to-octopus-13.0

Merge pull request #88 from fangohr/update-to-octopus-13.0 #8

Workflow file for this run

name: Spack style check
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black isort mypy
- name: Lint with black
run: black --check --diff .
- name: Lint with isort
run: isort --check --diff .
# - name: Type check with mypy
# run: mypy .