Don't use an external script for multiple inputs

All consumers would then have to bring this script into their repo,
since GitHub doesn't have something like Nix's string context.
This commit is contained in:
Cole Helbling 2021-12-03 10:24:07 -08:00
parent 30320f06f5
commit 2dc5d432c4
4 changed files with 10 additions and 49 deletions

View file

@ -1,17 +0,0 @@
name: CI
on:
pull_request:
push:
branches: [main]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Nix
uses: cachix/install-nix-action@v16
- name: Shellcheck
run: nix-shell --run 'shellcheck $(find . -type f -name "*.sh" -executable)'