From e2ff603587dd463b676b64f26b6cc52abfff79af Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Tue, 5 May 2020 17:39:09 -0700 Subject: [PATCH] Add Actions job to run macrotest --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9f8bbbdf..626ea4b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,6 +60,18 @@ jobs: - run: cd test_suite/no_std && cargo build if: matrix.os != 'windows' + macro: + name: Macro test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: dtolnay/rust-toolchain@nightly + - name: Download cargo-expand + run: | + curl -sSo ~/.cargo/bin/cargo-expand https://github.com/dtolnay/cargo-expand/releases/download/0.6.0/cargo-expand + chmod +x ~/.cargo/bin/cargo-expand + - run: cd test_suite && cargo test --test expandtest + msrv: name: Rust 1.13.0 runs-on: ubuntu-latest