feat(did-key): Add EBSI Natural Person Format #1693
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: ci | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-and-lint: | |
runs-on: ubuntu-latest | |
env: | |
RUSTFLAGS: "-Dwarnings" | |
steps: | |
- name: Checkout SSI Library | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: "1.67.1" | |
profile: minimal | |
override: true | |
components: rustfmt, clippy | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: "true" | |
- name: Fmt | |
run: cargo fmt -- --check | |
- name: Build | |
run: cargo build --workspace | |
- name: Clippy | |
run: cargo clippy --workspace | |
- name: Test vc-test-suite | |
run: | | |
cd vc-test-suite | |
npm i | |
cp ../vc-test/config.json . | |
npm test | |
- name: Test WASM compilation | |
run: | | |
rustup target add wasm32-unknown-unknown | |
cargo check --workspace --target wasm32-unknown-unknown | |
- name: Test examples | |
run: | | |
cargo test --examples | |
test-each-feature: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout SSI Library | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: taiki-e/install-action@cargo-hack | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-on-failure: "true" | |
- name: Test each feature | |
run: cargo hack test --each-feature --workspace --exclude ssi --exclude 'ssi-did-test' --exclude 'ssi-vc-test' -- --test-threads=4 | |
semver: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check semver | |
uses: obi1kenobi/cargo-semver-checks-action@v2 |