Skip to content

ci(test): Read Golang version from go.mod #9

ci(test): Read Golang version from go.mod

ci(test): Read Golang version from go.mod #9

Workflow file for this run

name: πŸ§ͺ Test
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
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 ./...