Skip to content

feat: Init CI

feat: Init CI #1

Workflow file for this run

name: Go CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
- name: Install dependencies
run: go mod download
- name: Lint
uses: golangci/golangci-lint-action@v4
- name: Test
run: go test -v tests/