From 9c412d9a8c7700586db1678426fce2e0a0e069a9 Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Thu, 25 May 2023 08:25:36 +0200 Subject: [PATCH] Also pre-build on nightly --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bef5a66c..0e8a70a9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,17 +38,18 @@ jobs: run: mix format --check-formatted build: - name: Build ${{matrix.os}} + name: Build ${{matrix.os}} ${{matrix.toolchain}} runs-on: ${{matrix.os}}-latest strategy: matrix: os: [ubuntu, windows, macos] + toolchain: [stable, nightly] steps: - uses: actions/checkout@v3 - uses: dtolnay/rust-toolchain@stable with: - components: clippy + toolchain: ${{matrix.toolchain}} - uses: Swatinem/rust-cache@v2 with: