Present opaque DICs and DDICs in a JWT wrapper #47
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 CI | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Build and Test Did Utils | |
run: | | |
cd did-utils | |
cargo build | |
cargo test | |
- name: Build and Test Did Endpoint | |
run: | | |
cd did-endpoint | |
cargo build | |
cargo test | |
- name: Build and Test Generic Server | |
run: | | |
cd generic-server | |
cargo build | |
cargo test | |
- name: Build and Mediator Server | |
run: | | |
cd mediator-server | |
cargo build | |
cargo test | |
- name: Build and Test Plugin for Mediator Coordination | |
run: | | |
cd mediator-coordination | |
cargo build | |
cargo test |