mirror of https://github.com/icedream/icecon.git
23 lines
378 B
YAML
23 lines
378 B
YAML
name: Go
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Set up Go 1.22
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: 1.22
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Build icecon binary
|
|
run: go build -v ./cmd/icecon
|