Skip to content

Build pipeline on commit or pr to main #1

Build pipeline on commit or pr to main

Build pipeline on commit or pr to main #1

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.22
# - name: Install Docker CLI Plugins
# run: |
# sudo apt-get update
# sudo apt-get install docker-compose
- name: Build
run: go build -v ./...