fix: stop LPs without refund addresses for both assets from creating orders in a pool (PRO-896) #3084
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
# 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: | |
pull_request: | |
branches: | |
- main | |
- 'release/*' | |
concurrency: | |
group: ${{ github.ref }}-release-development | |
cancel-in-progress: true | |
jobs: | |
pre-check: | |
uses: ./.github/workflows/_01_pre_check.yml | |
secrets: inherit | |
test: | |
uses: ./.github/workflows/_10_test.yml | |
secrets: inherit | |
build: | |
uses: ./.github/workflows/_20_build.yml | |
secrets: inherit | |
with: | |
network: development | |
docker: | |
needs: [build] | |
uses: ./.github/workflows/_24_docker.yml | |
secrets: inherit | |
with: | |
network: development | |
environment: dev | |
package: | |
needs: [build] | |
uses: ./.github/workflows/_25_package.yml | |
with: | |
network: "development" | |
environment: dev | |
secrets: inherit | |
post-check: | |
needs: [build] | |
uses: ./.github/workflows/_40_post_check.yml | |
secrets: inherit | |
with: | |
simple_bouncer: false | |
publish: | |
needs: [package] | |
uses: ./.github/workflows/_30_publish.yml | |
with: | |
version: ci/${{ github.sha }}/ | |
environment: dev | |
secrets: inherit | |
merge-commit-summary: | |
needs: [publish] | |
uses: ./.github/workflows/_04_merge_commit_summary.yml |