aboutsummaryrefslogblamecommitdiffstats
path: root/.github/workflows/go_build.yaml
blob: 6f1f8ca74026631fb5f3162e39676878ef93f005 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                               
name: Go
on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]
jobs:
  build:
    runs-on: alpine-3.19
    steps:
    - uses: actions/checkout@v4
    - name: Set up Go
      uses: actions/setup-go@v4
      with:
        go-version: '1.21'
    - name: Build
      run: go build -v ./...