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

25 lines
410 B
YAML
Raw Permalink Normal View History

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