mirror of
https://github.com/elyby/accounts-profiles-endpoint.git
synced 2024-11-26 00:38:54 +05:30
23 lines
364 B
YAML
23 lines
364 B
YAML
|
name: Build
|
||
|
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- name: Setup Go 1.21
|
||
|
uses: actions/setup-go@v4
|
||
|
with:
|
||
|
go-version: 1.21
|
||
|
cache-dependency-path: go.sum
|
||
|
|
||
|
- name: Install dependencies
|
||
|
run: go get .
|
||
|
|
||
|
- name: Build
|
||
|
run: go build ./...
|