Skip to content

codespell: workflow, config + typos fixed #63

codespell: workflow, config + typos fixed

codespell: workflow, config + typos fixed #63

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches_ignore: []
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup black environment
run: conda create --quiet --name black
- name: Check formatting
run: |
export PATH="/usr/share/miniconda/bin:$PATH"
source activate black
pip install black==23.3.0
black --check expfactory --exclude template.py