feat(nginx): implement rate limiting for both dev and prod setup #18
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] | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| env: | |
| GO111MODULE: on | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.25.5' | |
| cache: false | |
| - run: go env | |
| # Formating checking | |
| - name: Check gofmt | |
| run: | | |
| if [ -n "$(gofmt -s -l .)" ]; then | |
| echo "Go files are not formatted. Run 'gofmt -s -w .' to fix." | |
| exit 1 | |
| fi | |
| # tests | |
| - name: Run tests | |
| run: | | |
| cd api | |
| go test -v ./... --count=1 | |
| cd ../renderer/ | |
| go test -v ./... --count=1 | |
| cd ../storage/ | |
| go test -v ./... --count=1 | |
| cd .. | |
| # Spelling | |
| - name: Check spelling | |
| run: | | |
| curl -L -o ./install-misspell.sh https://git.io/misspell | |
| sh ./install-misspell.sh | |
| mv ./bin/misspell . | |
| chmod +x ./misspell | |
| ./misspell -source=auto -error . | |
| # Global api description is bundled | |
| - name: check api bundle | |
| run: | | |
| npm install -g @redocly/cli | |
| redocly bundle docs/api.yaml -o docs/bundled.generated.yaml | |
| git diff --exit-code docs/bundled.generated.yaml docs/bundled.yaml |