Skip to content

Add disabled linting and security workflows #2

Add disabled linting and security workflows

Add disabled linting and security workflows #2

Workflow file for this run

name: Go Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.24.x
- name: Check out code
uses: actions/checkout@v4
- name: Get dependencies
run: go mod download
- name: Run tests
run: go test -v ./...
- name: Run tests with race detection
run: go test -race -v ./...