Skip to content

Enable serde::expose_secret to deserialize Option<Secret<T>> (#24) #81

Enable serde::expose_secret to deserialize Option<Secret<T>> (#24)

Enable serde::expose_secret to deserialize Option<Secret<T>> (#24) #81

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings
RUSTDOCFLAGS: -D warnings
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/install-action@cargo-hack
- name: build
run: cargo hack build --feature-powerset
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: test
run: cargo test --all-features
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: fmt
run: cargo fmt --check
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: doc
run: cargo doc --all-features