aboutsummaryrefslogblamecommitdiffstats
path: root/.github/workflows/go_build.yaml
blob: 4f07ef6506806fd852042f1c163352c5f7ffe00c (plain) (tree)
1
2
3
4
5
6
7
8
9







                        
                          







                               
name: Go
on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]
jobs:
  build:
    runs-on: ubuntu-latest
    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 ./...