We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 832de87 commit 18ef975Copy full SHA for 18ef975
.github/workflows/lint.yml
@@ -0,0 +1,21 @@
1
+name: lint
2
+
3
+on:
4
+ pull_request:
5
+ paths-ignore:
6
+ - "**.md"
7
+ - "**.svg"
8
+ - ".gitignore"
9
+ - "LICENSE"
10
+ - "flake.lock"
11
12
+jobs:
13
+ treefmt:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout repository
17
+ uses: actions/checkout@v4
18
+ - name: Install Nix
19
+ uses: cachix/install-nix-action@v31
20
+ - name: Run treefmt check
21
+ run: nix build .#checks.x86_64-linux.treefmt --accept-flake-config
flake/dev/fmt.nix
@@ -7,10 +7,6 @@
perSystem =
{ config, pkgs, ... }:
{
- ci.buildbot = {
- inherit (config.checks) treefmt;
- };
-
treefmt.config = {
projectRootFile = "flake.nix";
flakeCheck = true;
0 commit comments