source: git/.github/workflows/lint.yml @ 1a5a93

spielwiese
Last change on this file since 1a5a93 was 1a5a93, checked in by Max Horn <max@…>, 17 months ago
CI: update various GitHub Actions to latest version
  • Property mode set to 100644
File size: 643 bytes
RevLine 
[4f8fd1d]1name: Lint
2on:
[569754d]3  push: { branches: [ "spielwiese" ] }
4  pull_request: { branches: [ "spielwiese" ] }
[4f8fd1d]5
6jobs:
7  codespell:
8    runs-on: ubuntu-20.04
9    steps:
[1a5a93]10      - uses: actions/checkout@v3
[4f8fd1d]11        with: { submodules: recursive }
12      - uses: conda-incubator/setup-miniconda@v2
13        with: { mamba-version: "*", channels: "conda-forge", channel-priority: true }
14      - name: Install dependencies
15        shell: bash -l {0}
16        run: |
17          mamba install codespell=2.2.2 pycodestyle=2.9.1
18      - name: Run codespell
19        shell: bash -l {0}
[4a4df3a]20        run: codespell --ignore-words=.codespell_ignore kernel
[4f8fd1d]21
22env:
23  MAKEFLAGS: -j2
Note: See TracBrowser for help on using the repository browser.