feat: automate sandbox version updates in documentation #10
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
| name: Ingress Tests | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'components/ingress/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.0' | |
| - name: Run golint | |
| run: | | |
| cd components/ingress | |
| make golint | |
| - name: Run Build | |
| run: | | |
| cd components/ingress | |
| make build | |
| - name: Run tests | |
| run: | | |
| cd components/ingress | |
| make test |