Bump arrow from 53.3.0 to 54.0.0 in /rust #102
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: Rust Tests | |
on: | |
pull_request: | |
paths: | |
- 'rust/**' | |
- '.github/workflows/rust-tests.yaml' | |
env: | |
SCCACHE_GHA_ENABLED: "true" | |
SSCACHE_CACHE_SIZE: "2G" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: mozilla-actions/[email protected] | |
- name: Rust tests | |
run: cargo test | |
working-directory: ./rust |