colmena/.github/workflows/linters.yml
2023-01-27 23:44:41 -07:00

37 lines
794 B
YAML

name: Linters
on:
pull_request:
push:
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
strategy:
matrix:
nix:
- version: 2.13.2
url: https://releases.nixos.org/nix/nix-2.13.2/install
steps:
- uses: actions/checkout@v3.3.0
- name: Install Nix
uses: zhaofengli/nix-installer-action@zhaofeng
- 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"