mirror of
https://github.com/fhmq/hmq.git
synced 2026-04-30 05:28:34 +00:00
19 lines
296 B
YAML
19 lines
296 B
YAML
name: Ubuntu build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: 1.21
|
|
|
|
- name: Build
|
|
run: go build -v ./...
|