Skip to content

removing linting for now #1

removing linting for now

removing linting for now #1

Workflow file for this run

name: CI
on: [push]
jobs:
golang-test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install Go 1.23
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v ./...