Skip to content

Bump lettre from 0.11.7 to 0.11.9 #281

Bump lettre from 0.11.7 to 0.11.9

Bump lettre from 0.11.7 to 0.11.9 #281

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose --all-features
- name: Run clippy
run: cargo clippy --all --tests --all-features
- name: Run tests
run: cargo test --all --verbose --all-features
- name: Check formatting
run: cargo fmt -- --check