Skip to content

Buffered IO.

Buffered IO. #5

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@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: tidy
run: go mod tidy
- name: Vet
run: go vet ./...
- name: Test
run: go test -v ./...
- name: Build
working-directory: ./cmd/bfg
run: go build -a -trimpath -ldflags='-s -w' -o bfg_linux
- uses: actions/upload-artifact@v4
with:
name: bfg-build
path: cmd/bfg/bfg_linux