Skip to content

Add an integration test #5

Add an integration test

Add an integration test #5

Workflow file for this run

name: ci
on: [push, pull_request]
jobs:
unit-test:
name: Cargo build & test
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.64.0
- 1.65.0
- 1.66.1
- 1.67.1
- 1.68.2
- 1.69.0
- 1.70.0
- 1.71.0
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true
profile: minimal
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all-features
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --all-features
integration-test:
name: Integration test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Apt update
run: sudo apt update
- name: Install Python
run: sudo apt install -y python3
- name: Install OpenSMTPD
run: sudo apt install -y opensmtpd
- name: Stop OpenSMTPD
run: sudo systemctl stop opensmtpd.service
- name: Install Rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
profile: minimal
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --all-features
- name: Run the integration test
run: ./start_test.py
cargo-fmt:
name: Cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- name: Rustfmt Check
uses: actions-rust-lang/rustfmt@v1
cargo-deny:
name: Cargo deny
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1