File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : pre-commit-jmurr
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches : [main]
7
+
8
+ jobs :
9
+ pre-commit-jmurr :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : JRMurr/direnv-nix-action@v4.1.0
14
+ - run : |
15
+ pip install -r requirements/dev.txt
16
+ pre-commit run -a
Original file line number Diff line number Diff line change
1
+ name : pre-commit-simple
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches : [main]
7
+
8
+ jobs :
9
+ pre-commit-simple :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - uses : DeterminateSystems/nix-installer-action@v3
14
+ - uses : DeterminateSystems/magic-nix-cache-action@main
15
+ - uses : HatsuneMiku3939/direnv-action@v1
16
+ - run : |
17
+ pip install -r requirements/dev.txt
18
+ pre-commit run -a
You can’t perform that action at this time.
0 commit comments