Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
name: Go Build and Test

on:
pull_request_target:
types: [opened,synchronize]
pull_request

jobs:
build:

build-and-test:
name: Build and Test the Go code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Checkout the code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22.4'

go-version: '1.22.5'
- name: make verification
run: make verifiers

- name: Build
run: go build -v ./...

- name: Test
run: go test -v ./...