Skip to content

feat(slackbot): support nested commands #170

feat(slackbot): support nested commands

feat(slackbot): support nested commands #170

Workflow file for this run

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
#- '1.20'
- '1.21'
module:
- cache
- httpclient
- httpserver
- set
- slackbot
- tabulator
- taskmanager
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: ${{ matrix.module }}/go.sum
- name: test
run: |
cd ${{ matrix.module }}
go vet ./...
go test ./... -race -coverprofile=coverage.txt -covermode=atomic
- uses: codecov/codecov-action@v3
if: matrix.go-version == '1.21'
with:
file: ${{ matrix.module}}/coverage.txt