2022-04-05 15:38:39 +00:00
|
|
|
name: CI
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches: [main]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
shellcheck:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Install Nix
|
2022-08-19 18:42:44 +00:00
|
|
|
uses: cachix/install-nix-action@v17
|
2022-04-05 15:38:39 +00:00
|
|
|
- name: Shellcheck
|
|
|
|
run: nix-shell --run 'shellcheck $(find . -type f -name "*.sh" -executable)'
|