Check amounts in router_v2 swap token for token test #448
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: PR checks | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: [self-hosted, Linux, X64, large] | |
steps: | |
- name: Checkout the source code | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Cache Crates | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cargo | |
key: ${{ runner.os }}-rust-${{ hashFiles('rust-toolchain.toml') }} | |
restore-keys: | | |
${{ runner.os }}-rust | |
- name: DRink! tests | |
run: make all-drink-dockerized |