Skip to content

lint in ci

lint in ci #6

Workflow file for this run

name: Lint and Test Main
on:
push:
branches:
- main
jobs:
Test-And-Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
cache-dependency-path: go.sum
- name: lint
run: task lint
- name: Run tests
run: task test:all