Skip to content

fix: Fix command line options for tail. (#8) #22

fix: Fix command line options for tail. (#8)

fix: Fix command line options for tail. (#8) #22

Workflow file for this run

name: Lint
on:
- push
- workflow_dispatch
jobs:
Dockerfiles:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run hadolint
uses: hadolint/[email protected]
with:
dockerfile: "src/Dockerfile"
github-action-workflows:
name: "GitHub Action workflows"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download actionlint
id: get_actionlint
shell: bash
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
- name: Run linter
shell: bash
run: |
echo "::add-matcher::.github/actionlint-matcher.json"
${{ steps.get_actionlint.outputs.executable }} -color
shellcheck:
name: "Shell scripts"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run ShellCheck
uses: ludeeus/[email protected]
with:
additional_files: "pre-commit"