mirror of
https://github.com/singchia/frontier.git
synced 2025-12-24 13:27:50 +08:00
21 lines
309 B
YAML
21 lines
309 B
YAML
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.22
|
|
|
|
- name: Build
|
|
run: go build -v ./... |