Update nginx conf to add custom docker ip range and allow it to be set by env variable #64
Workflow file for this run
This file contains hidden or 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
| on: pull_request | |
| name: Workflow templates | |
| jobs: | |
| check-yaml: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - run: | | |
| docker pull mikefarah/yq | |
| for f in $(find github/workflows/ -name '*.yaml'); do | |
| docker run --rm --volume "$PWD":/workdir mikefarah/yq "$f" > /dev/null | |
| done | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: go-task/setup-task@v1 | |
| - run: | | |
| task lint:shell-script |