Skip to content
This repository has been archived by the owner on Aug 11, 2023. It is now read-only.

chore(deps): update actions/setup-go action to v4 #18

chore(deps): update actions/setup-go action to v4

chore(deps): update actions/setup-go action to v4 #18

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: stable
- name: Lint
uses: golangci/golangci-lint-action@v3.4.0
with:
version: latest
- name: Build
run: go build -v cmd/main.go
- name: Test
run: go test -v ./...