Skip to content

feat!: v2 rewrite in golang #2

feat!: v2 rewrite in golang

feat!: v2 rewrite in golang #2

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: latest
- name: test
run: |
go test -v ./...