forked from DGNum/colmena
31 lines
702 B
YAML
31 lines
702 B
YAML
name: Linters
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
jobs:
|
|
linters:
|
|
name: Linters
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3.3.0
|
|
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@9b252454a8d70586c4ee7f163bf4bb1e9de3d763 # v2
|
|
|
|
- name: Enable binary cache
|
|
uses: cachix/cachix-action@v12
|
|
with:
|
|
name: colmena
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
- name: Check EditorConfig
|
|
run: nix-shell --run "editorconfig-checker"
|
|
|
|
- name: Check flake8
|
|
run: nix-shell --run "flake8 manual/preprocess.py"
|
|
|
|
- name: Check rustfmt
|
|
run: nix-shell --run "cargo fmt --check"
|