Set default primary dex patterns for android_instrumentation_apk #2
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: Cargo build and test | |
on: | |
push: | |
pull_request: | |
jobs: | |
linux-cargo-build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: Swatinem/rust-cache@v2 | |
- run: sudo apt-get update && sudo apt-get install libssl-dev cmake clang lld opam zstd | |
- run: opam init --compiler=5.1.1 --disable-sandboxing -y | |
- run: eval $(opam env) && ./ocaml-setup.sh | |
- run: cargo build | |
- run: cargo test |