Add merge custom option to importer command (#187) #334
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
| name: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test-build: | |
| name: 👷 Test & Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Test | |
| env: | |
| STREAM_KEY: ${{ secrets.STREAM_KEY }} | |
| STREAM_SECRET: ${{ secrets.STREAM_SECRET }} | |
| run: | | |
| go test -coverprofile cover.out -v -race ./... | |
| go tool cover -func=cover.out |