Skip to content

Moving to istio-proxy image #54

Moving to istio-proxy image

Moving to istio-proxy image #54

Workflow file for this run

name: pull request
on:
pull_request:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v8
with:
args: --timeout=5m
build-test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install just
uses: taiki-e/install-action@just
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Build and run tests with race detector enabled
run: just test-race