fix: ignore dust underflows in order fills rpc (#5352) #1538
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
# This CI runs a lot of the jobs in parallel to speed up development time. We also run a simpler suite of bouncer tests. | |
name: Release Chainflip Development on main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
pre-check: | |
uses: ./.github/workflows/_01_pre_check.yml | |
secrets: inherit | |
test: | |
needs: [pre-check] | |
uses: ./.github/workflows/_10_test.yml | |
secrets: inherit | |
coverage: | |
uses: ./.github/workflows/_11_coverage.yml | |
with: | |
test_features: runtime-benchmarks,slow-tests | |
secrets: inherit | |
build: | |
uses: ./.github/workflows/_20_build.yml | |
secrets: inherit | |
with: | |
profile: "release" | |
# Used to test upgrades to this version from the latest release | |
build-try-runtime: | |
uses: ./.github/workflows/_20_build.yml | |
secrets: inherit | |
with: | |
profile: "try-runtime" | |
upload-name: "chainflip-backend-bin-try-runtime" | |
binary-subdir: release | |
docker: | |
needs: [build] | |
uses: ./.github/workflows/_24_docker.yml | |
secrets: inherit | |
with: | |
network: "test" | |
environment: "development" | |
package: | |
needs: [build] | |
uses: ./.github/workflows/_25_package.yml | |
with: | |
network: "test" | |
secrets: inherit | |
publish: | |
needs: [package] | |
uses: ./.github/workflows/_30_publish.yml | |
with: | |
version: ci/${{ github.sha }}/ | |
environment: "development" | |
secrets: inherit |