Skip to content

Merge pull request #1165 from kittydoor/socketmode-remove-duplicate-d… #565

Merge pull request #1165 from kittydoor/socketmode-remove-duplicate-d…

Merge pull request #1165 from kittydoor/socketmode-remove-duplicate-d… #565

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
matrix:
go:
- '1.18'
- '1.19'
- '1.20'
name: test go-${{ matrix.go }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: run test
run: go test -v -race ./...
env:
GO111MODULE: on
lint:
runs-on: ubuntu-22.04
name: lint
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@537aa1903e5d359d0b27dbc19ddd22c5087f3fbc # v3.2.0
with:
version: v1.48.0