mirror of
https://github.com/NotAShelf/httpserve.git
synced 2024-11-01 19:11:18 +00:00
18 lines
309 B
YAML
18 lines
309 B
YAML
name: Go build CI
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.21'
|
|
|
|
- name: Build
|
|
run: go build -v ./.
|