Skip to content

Add support for percent encoded characters in did url components #13

Add support for percent encoded characters in did url components

Add support for percent encoded characters in did url components #13

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Rust
uses: './.github/actions/setup'
with:
os: ${{ runner.os }}
toolchain: nightly
components: clippy,rustfmt
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-targets --all-features
toolchain: nightly
- name: Run cargo clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings
toolchain: nightly
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
toolchain: nightly