Update rust.yml

This commit is contained in:
Hannes 2021-05-13 14:23:36 +02:00 committed by GitHub
parent b4453116fe
commit dee1992f44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ jobs:
with: with:
command: build command: build
build-and-test-apple-silicon-mac: build-and-test-mac-arm:
runs-on: [macos-latest] runs-on: [macos-latest]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -63,3 +63,25 @@ jobs:
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
with: with:
command: build command: build
build-and-test-ios:
runs-on: [macos-latest]
steps:
- uses: actions/checkout@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
target: aarch64-apple-ios
components: rustfmt, clippy
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: Run cargo build
uses: actions-rs/cargo@v1
with:
command: build