fix example puiseuxExpansion #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
push: { branches: [ "spielwiese" ] } | |
pull_request: { branches: [ "spielwiese" ] } | |
jobs: | |
codespell: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: { submodules: recursive } | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: { mamba-version: "*", channels: "conda-forge", channel-priority: true } | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
mamba install codespell=2.2.2 pycodestyle=2.9.1 | |
- name: Run codespell | |
shell: bash -l {0} | |
run: codespell --ignore-words=.codespell_ignore kernel | |
env: | |
MAKEFLAGS: -j2 |