This repository was archived by the owner on Sep 5, 2025. It is now read-only.
Update zip requirement from 2.1 to 4.5 #43
Workflow file for this run
This file contains hidden or 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 Build & Test | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: cargo build | |
| - name: Fetch Java Runtime | |
| run: ./fetch_runtime.sh | |
| - name: Run tests | |
| run: cargo test | |
| - name: Check format | |
| run: cargo fmt --all -- --check |