Give up and attempt to use an action that sets up Android device checks #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust (Common) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Cargo Build | |
run: cargo build --verbose | |
working-directory: common | |
- name: Run tests | |
run: cargo test --verbose | |
working-directory: common | |
# - name: Build iOS XCFramework | |
# run: ./build-ios.sh | |
# working-directory: common | |
# - name: Build Android Shared Library | |
# run: ./build-android.sh | |
# working-directory: common |