double-ratchet-rs/.github/workflows/rust.yml
2021-05-13 14:00:54 +02:00

38 lines
779 B
YAML

name: Rust
on:
push
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo +nightly build
- name: Run tests
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
run: cargo build --target aarch64-apple-darwin