spielwiese
Last change
on this file since 1a5a93 was
1a5a93,
checked in by Max Horn <max@…>, 7 months ago
|
CI: update various GitHub Actions to latest version
|
-
Property mode set to
100644
|
File size:
643 bytes
|
Line | |
---|
1 | name: Lint |
---|
2 | on: |
---|
3 | push: { branches: [ "spielwiese" ] } |
---|
4 | pull_request: { branches: [ "spielwiese" ] } |
---|
5 | |
---|
6 | jobs: |
---|
7 | codespell: |
---|
8 | runs-on: ubuntu-20.04 |
---|
9 | steps: |
---|
10 | - uses: actions/checkout@v3 |
---|
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} |
---|
20 | run: codespell --ignore-words=.codespell_ignore kernel |
---|
21 | |
---|
22 | env: |
---|
23 | MAKEFLAGS: -j2 |
---|
Note: See
TracBrowser
for help on using the repository browser.