Skip to content

chore: bump up bridge version to v1.0.45-rc1 #22

chore: bump up bridge version to v1.0.45-rc1

chore: bump up bridge version to v1.0.45-rc1 #22

Workflow file for this run

name: Lint
on:
pull_request:
branches: [main]
paths:
- 'runner/**'
- '.github/workflows/lint.yml'
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25'
cache-dependency-path: runner/go.sum
- name: go fmt
working-directory: runner
run: |
unformatted=$(gofmt -s -l .)
[ -z "$unformatted" ] || (echo "Unformatted: $unformatted"; exit 1)
- name: Download runtime
working-directory: runner
run: make download
- name: go vet
working-directory: runner
run: go vet ./...