Skip to content

feat: automate sandbox version updates in documentation #10

feat: automate sandbox version updates in documentation

feat: automate sandbox version updates in documentation #10

Workflow file for this run

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