Skip to content

Add an empty line at the end of the line #25

Add an empty line at the end of the line

Add an empty line at the end of the line #25

Workflow file for this run

name: πŸ§ͺ Test
on:
push:
branches:
- main
paths:
- "**.go"
- ".github/workflows/test.yml"
pull_request:
paths:
- "**.go"
- ".github/workflows/test.yml"
jobs:
Test:
runs-on: macOS-13
steps:
- name: 🚚 Checkout Repository
uses: actions/checkout@v4
- name: 🐹 Setup Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: πŸ“Š Static Analysis
run: go vet -v ./...
- name: πŸ§ͺ Test Packages
run: go test -v -race ./...