Add Google Cloud CLI feature and tests #20
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 | |
with: | |
fetch-depth: 0 | |
- uses: redhat-plumbers-in-action/differential-shellcheck@v5 | |
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" |