Skip to content

Style fixed

Style fixed #30

Workflow file for this run

name: Check style
on: [push, pull_request]
jobs:
style:
defaults:
run:
shell: bash -l {0}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Setup miniconda
uses: conda-incubator/[email protected]
with:
python-version: 3.8
auto-update-conda: true
channels: conda-forge,defaults
activate-environment: AST
environment-file: environment.yml
- name: Install shellcheck and checkbashisms
run: sudo apt update && sudo apt install shellcheck devscripts
- name: Check style
run: make style