Skip to content

if the response contains fields in the aamva namespace, return them a… #133

if the response contains fields in the aamva namespace, return them a…

if the response contains fields in the aamva namespace, return them a… #133

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: cargo build
- name: Run tests
run: |
cargo test
cd macros
cargo test
- name: Clippy
run: |
cargo clippy
cd macros
cargo clippy
- name: Fmt
run: |
cargo fmt -- --check
cd macros
cargo fmt -- --check