Skip to content

Merge pull request #3 from acgtools/dreamjz-patch-1 #23

Merge pull request #3 from acgtools/dreamjz-patch-1

Merge pull request #3 from acgtools/dreamjz-patch-1 #23

Workflow file for this run

name: CI
on:
workflow_call:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.54
args: --verbose --timeout=3m --issues-exit-code=1
- name: Test
run: go test -v ./... -race -covermode=atomic