feat: add flag to enable/disable heavy queries and refactor apis #46
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: Tests / Code Coverage | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
jobs: | |
tests: | |
strategy: | |
matrix: | |
go-version: [1.20.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
GOPRIVATE: github.com/bnb-chain | |
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_SECRET }} | |
CGO_CFLAGS: "-O -D__BLST_PORTABLE__" | |
CGO_CFLAGS_ALLOW: "-O -D__BLST_PORTABLE__" | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
# In order: | |
# * Module download cache | |
# * Build cache (Linux) | |
# * Build cache (Mac) | |
# * Build cache (Windows) | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
~/Library/Caches/go-build | |
%LocalAppData%\go-build | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Setup GitHub Token | |
run: git config --global url.https://[email protected]/.insteadOf https://github.com/ | |
- name: run tests | |
run: | | |
make test | |
- name: make coverage report | |
id: coverage-report | |
if: github.event_name == 'pull_request' | |
continue-on-error: true | |
run: | | |
echo '## Test Coverage Report' >> coverage-report.txt | |
echo 'commit-id: ${{ github.event.pull_request.head.sha }}' >> coverage-report.txt | |
echo 'generated by https://github.com/vladopajic/go-test-coverage' >> coverage-report.txt | |
echo >> coverage-report.txt | |
echo '<details><summary>Additional details and impacted files</summary>' >> coverage-report.txt | |
echo >> coverage-report.txt | |
echo '```' >> coverage-report.txt | |
make check-coverage >> coverage-report.txt | |
echo '```' >> coverage-report.txt | |
echo >> coverage-report.txt | |
echo '</details>' >> coverage-report.txt | |
cat coverage-report.txt >> $GITHUB_STEP_SUMMARY |