feat: add platform adapter layer for WeCom and Feishu integration #158
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow will build a golang project | |
| # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | |
| name: Sanity check | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25' | |
| - name: vet | |
| run: go vet -v ./... | |
| - name: lint | |
| uses: golangci/golangci-lint-action@v6 | |
| with: | |
| install-mode: "goinstall" | |
| version: v1.64 | |
| - name: test models | |
| run: go test -v ./pkg/models/... | |