refactor(CI): move Java bindings into a separate job #69
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: Weekly Testing | |
on: | |
push: | |
branches: | |
- main | |
schedule: | |
# Run each week | |
- cron: "0 0 * * 0" | |
jobs: | |
build-and-test: | |
name: Build and Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-14, macos-13-xlarge] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: Set up Cargo Cache | |
uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: true | |
- name: Run tests | |
run: cargo test --workspace --verbose --release |