Skip to content

Update go mod and package imports #2

Update go mod and package imports

Update go mod and package imports #2

Workflow file for this run

name: Pre-commit checks
on:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: .go_version
- name: Check license
run: make license-check
- name: Build and Check for changes
run: make check