diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ace27983..525e6be8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -68,7 +68,6 @@ jobs: - i686-unknown-linux-musl - x86_64-unknown-linux-gnu - x86_64-unknown-linux-musl - - x86_64-linux-android steps: - name: Checkout uses: actions/checkout@v3 @@ -87,6 +86,25 @@ jobs: - name: Run tests run: cargo test --all-features --target ${{ matrix.target }} + # Just make sure it builds. Not tests running. + test-android: + runs-on: ubuntu-latest + strategy: + matrix: + target: + - x86_64-linux-android + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install toolchain + uses: dtolnay/rust-toolchain@stable + with: + target: ${{ matrix.target }} + + - name: Build + run: cargo build --all-features --target ${{ matrix.target }} + check-stub: runs-on: ubuntu-latest steps: