From a949b4e884c4e5f268e6c5e2cb795ff312a2b05e Mon Sep 17 00:00:00 2001 From: Hannes <55623006+umgefahren@users.noreply.github.com> Date: Thu, 13 May 2021 14:00:54 +0200 Subject: [PATCH] Update rust.yml --- .github/workflows/rust.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index ce8e6a5..9563af7 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,15 +18,19 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build - run: cargo build --verbose + run: cargo +nightly build - name: Run tests - run: cargo test --verbose + run: cargo +nightly test build2: runs-on: [macos-latest] steps: - uses: actions/checkout@v2 + - name: Install Target iOS + run: rustup target add aarch64-apple-ios + - name: Install Target MacOS ARM + run: rustup target add aarch64-apple-darwin - name: Cross Build iOS run: cargo build --target aarch64-apple-ios - name: Cross Build MacOS ARM