Skip to content

perf: format example config #15

perf: format example config

perf: format example config #15

Workflow file for this run

name: 🐭 Go
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: πŸ“¦ Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: ✳️ Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
check-latest: true
- name: πŸ”„ Get dependencies
run: go get -v ./...
- name: βš’οΈ Build
run: go build -v ./...
- name: πŸ§ͺ Test
run: go test -v ./...