editorconfig check: avoid channels as they might break one day
This commit is contained in:
parent
433df32ddb
commit
77215825de
|
@ -3,6 +3,7 @@ name: "Checking EditorConfig"
|
||||||
permissions: read-all
|
permissions: read-all
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
# avoids approving first time contributors
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
branches-ignore:
|
branches-ignore:
|
||||||
- 'release-**'
|
- 'release-**'
|
||||||
|
@ -29,11 +30,11 @@ jobs:
|
||||||
if: env.PR_DIFF
|
if: env.PR_DIFF
|
||||||
- uses: cachix/install-nix-action@v13
|
- uses: cachix/install-nix-action@v13
|
||||||
if: env.PR_DIFF
|
if: env.PR_DIFF
|
||||||
- name: install editorconfig-checker from unstable channel
|
with:
|
||||||
run: |
|
# nixpkgs commit is pinned so that it doesn't break
|
||||||
nix-channel --add https://nixos.org/channels/nixpkgs-unstable
|
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/f93ecc4f6bc60414d8b73dbdf615ceb6a2c604df.tar.gz
|
||||||
nix-channel --update
|
- name: install editorconfig-checker
|
||||||
nix-env -iA nixpkgs.editorconfig-checker
|
run: nix-env -iA editorconfig-checker -f '<nixpkgs>'
|
||||||
if: env.PR_DIFF
|
if: env.PR_DIFF
|
||||||
- name: Checking EditorConfig
|
- name: Checking EditorConfig
|
||||||
if: env.PR_DIFF
|
if: env.PR_DIFF
|
||||||
|
|
Loading…
Reference in New Issue