Trampoline client to delegate payments to the LSP #713
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: Rust Unit Test | |
on: | |
pull_request: | |
types: | |
- synchronize | |
- opened | |
workflow_dispatch: | |
merge_group: | |
jobs: | |
unit_test: | |
name: Rust unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
- uses: arduino/setup-protoc@v2 | |
with: | |
version: "23.2" # Fixed since we mount the path below | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- run: (cd libs; cargo test) |