Skip to content

chore: update github actions (#5) #19

chore: update github actions (#5)

chore: update github actions (#5) #19

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- name: run go test
run: go test ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest