Skip to content

Update release workflow #5

Update release workflow

Update release workflow #5

Workflow file for this run

name: 🔨 Build And Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.19'
- name: Install dependencies
run: go get .
- name: Build
run: go build -v ./...