Skip to content

Add files via upload #7

Add files via upload

Add files via upload #7

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-go:
name: build-commit-pr-go
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: |
sudo apt-get update -y
sudo apt-get install golang gcc libgl1-mesa-dev xorg-dev -y
go build -v ./...
# - name: Test
# run: go test -v ./...