From b7291a2bd4dd184a55dcaf110cf82a82a1a87104 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolphe=20Br=C3=A9ard?= Date: Sun, 30 Apr 2023 16:16:08 +0200 Subject: [PATCH] Add the intagration test to the CI --- .github/workflows/ci.yml | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d11b6be..77aca6f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: ci on: [push, pull_request] jobs: - test: + unit-test: name: Cargo build & test runs-on: ubuntu-latest strategy: @@ -20,9 +20,9 @@ jobs: - name: Install Rust ${{ matrix.rust }} uses: actions-rs/toolchain@v1 with: - toolchain: ${{ matrix.rust }} - override: true - profile: minimal + toolchain: ${{ matrix.rust }} + override: true + profile: minimal - name: Run cargo build uses: actions-rs/cargo@v1 with: @@ -33,6 +33,32 @@ jobs: 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 dkimpy + run: sudo apt install -y python3-dkim python3-dnspython python3-nacl python3-authres + - name: Install OpenSMTPD + run: sudo apt install -y opensmtpd + - 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: ./tests/start_test.py cargo-fmt: name: Cargo fmt runs-on: ubuntu-latest