Skip to content

Creation of the did-endpoint documentation #94

Creation of the did-endpoint documentation

Creation of the did-endpoint documentation #94

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
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
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y libssl-dev pkg-config
- name: Build and Run Test
run: |
cargo build --workspace --all-features
cargo test --workspace --all-features