feat: improve test stability by optional pricing source (backport #490) #1401
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: Asset List Parsing Test | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "main" | |
- "v[0-9]**" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout repository | |
uses: actions/checkout@v4 | |
- | |
name: 🐿 Setup Golang | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- | |
name: Run ParseAssetList test | |
env: | |
CI_SQS_ASSETLIST_TEST: true | |
run: | | |
go test \ | |
-timeout 30s \ | |
-run TestTokensUseCaseTestSuite/TestParseAssetList \ | |
github.com/osmosis-labs/sqs/tokens/usecase -v -count=1 |