Update to latest spark sdk release #223
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: Tests | |
| on: | |
| pull_request: | |
| branches: [ main, master ] | |
| push: | |
| branches: [ main, master ] | |
| workflow_dispatch: | |
| jobs: | |
| rust_tests: | |
| name: Rust Checks | |
| runs-on: self-hosted | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: stable | |
| components: clippy, rustfmt | |
| override: true | |
| profile: minimal | |
| - name: Install Protoc | |
| uses: arduino/setup-protoc@v3 | |
| with: | |
| version: "30.2" | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: cargo-${{ runner.os }}-rust-tests-${{ hashFiles('**/Cargo.toml') }} | |
| restore-keys: | | |
| cargo-${{ runner.os }}-rust-tests- | |
| cargo-${{ runner.os }}- | |
| - name: Check formatting | |
| run: cargo fmt --check | |
| - name: Check clippy | |
| run: ./ci/check-lint.sh | |
| - name: Check examples | |
| run: cargo check -p orange-cli | |
| - name: Run tests | |
| run: cargo test --features _test-utils -- --test-threads=2 | |
| - name: Run cashu tests | |
| run: cargo test --features _cashu-tests -- --test-threads=2 |