Skip to content

arrived four hours too early at the airport #1

arrived four hours too early at the airport

arrived four hours too early at the airport #1

Workflow file for this run

name: ShellCheck
on: [push, pull_request]
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: |
find . -name "*.sh" -print0 | xargs -0 shellcheck