Skip to content

Implement password resetting API #152

Implement password resetting API

Implement password resetting API #152

Workflow file for this run

on: [pull_request, push]
name: Continuous Integration
env:
RUSTFLAGS: -Dwarnings
jobs:
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo clippy --all-features --all-targets --locked --workspace
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo fmt --all --check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: cargo test --all-features --all-targets --locked --workspace