the mempool check is good #2602
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: Rust and Clarity Tests | |
on: [push] | |
concurrency: | |
# limit concurrency of entire workflow runs for a specific branch | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: Run Unit Tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Set Node Version | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22.1.0 | |
cache: "pnpm" | |
- uses: arduino/setup-protoc@v3 | |
with: | |
version: "25.3" | |
- name: Setup rust toolchain | |
run: rustup show | |
- uses: Swatinem/rust-cache@v2 | |
- uses: taiki-e/install-action@v2 | |
with: | |
tool: [email protected] | |
- name: Install package dependencies. | |
run: make install | |
- name: Run lints | |
run: make lint | |
- name: Run tests | |
run: make test-ci | |
- name: Docker test service setup | |
run: make integration-env-up-ci | |
- name: Run integration tests | |
run: make integration-test-ci | |
- name: Docker compose down | |
if: always() | |
run: make integration-env-down-ci | |
- name: Upload integration test logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
path: ./target/emily-server.log |