Skip to content

ci: move test e2e to test workflow #788

ci: move test e2e to test workflow

ci: move test e2e to test workflow #788

Workflow file for this run

name: Check imports
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.21"
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check imports
shell: bash
run: |
export PATH=$(go env GOPATH)/bin:$PATH
go get golang.org/x/tools/cmd/goimports
diff -u <(echo -n) <(goimports -d .)