Add postgresql-client Feature #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint shell scripts | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: azohra/shell-linter@latest | |
with: | |
path: "./src/**/*.sh" | |
severity: "warning" | |
env: | |
# Acceptable use of decimal comparison | |
SHELLCHECK_OPTS: -e SC2072 | |
validate: | |
name: Validate devcontainer-feature.json files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: devcontainers/action@v1 | |
with: | |
base-path-to-features: "./src" | |
validate-only: "true" |