opt(stream): add option to directly copy over tables from lower levels (#1700) #236
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: ci-badger-tests-coverage | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.github/*' | |
- '.github/ISSUE_TEMPLATE/*' | |
- 'docs/**' | |
- 'images/**' | |
branches: | |
- main | |
- 'release/v*' | |
jobs: | |
badger-tests-coverage: | |
runs-on: warp-ubuntu-latest-x64-4x | |
steps: | |
- uses: actions/checkout@v4 # checkout merge commit | |
with: | |
ref: "refs/pull/${{ github.event.number }}/merge" | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install Dependencies | |
run: make dependency | |
- name: Run Badger Tests | |
run: make test | |
- name: Install Goveralls | |
run: go install github.com/mattn/goveralls@latest | |
- name: Send Coverage Results | |
env: | |
COVERALLS_TOKEN: ${{ secrets.COVERALLSIO_TOKEN }} | |
run: goveralls -coverprofile=cover.out |