model out more of the interface and remove unused struct for subscrib… #446
Workflow file for this run
This file contains 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: Test & Coverage | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test with Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.23.1' | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
go mod download | |
- name: Run Integration tests | |
env: | |
GROQ_KEY: ${{ secrets.GROQ_KEY }} | |
TOOLHOUSE_API_KEY: ${{ secrets.TOOLHOUSE_API_KEY }} | |
E2B_API_KEY: ${{ secrets.E2B_API_KEY }} | |
run: | | |
go test -race -tags=integration ./... | |
- name: Run Unit tests | |
env: | |
GROQ_KEY: ${{ secrets.GROQ_KEY }} | |
TOOLHOUSE_API_KEY: ${{ secrets.TOOLHOUSE_API_KEY }} | |
E2B_API_KEY: ${{ secrets.E2B_API_KEY }} | |
UNIT: true | |
run: | | |
go test -race -covermode atomic -coverprofile=covprofile ./... | |
- name: Install goveralls | |
run: go install github.com/mattn/goveralls@latest | |
- name: Send coverage | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: goveralls -coverprofile=covprofile -service=github | |
# or use shogo82148/actions-goveralls | |
# - name: Send coverage | |
# uses: shogo82148/actions-goveralls@v1 | |
# with: | |
# path-to-profile: covprofile |