Update rust.yml

This commit is contained in:
Hannes 2021-05-13 14:00:54 +02:00 committed by GitHub
parent 1084c80f14
commit a949b4e884
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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