instances-api/.github/workflows/build.yml

25 lines
410 B
YAML
Raw Normal View History

2022-12-06 03:01:56 +00:00
name: Go Build
on:
push:
paths-ignore:
- "**.md"
branches:
- main
pull_request:
paths-ignore:
- "**.md"
jobs:
2022-12-06 03:02:58 +00:00
build:
2022-12-06 03:01:56 +00:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
2022-12-06 03:01:56 +00:00
with:
check-latest: true
cache: true
2023-09-12 20:09:46 +00:00
go-version: "stable"
2022-12-06 03:01:56 +00:00
- name: Build app
run: go build -o app