Update reference to 20250125 #6392
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: tests | |
on: | |
push: | |
branches-ignore: | |
- 'private/**' | |
pull_request: | |
branches-ignore: | |
- 'private/**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: 1.83.0 | |
components: rustfmt, clippy, llvm-tools-preview | |
- name: Rust Cache | |
uses: actions/[email protected] | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-1.83.0-${{ hashFiles('**/Cargo.toml') }} | |
- name: Setup Node | |
uses: actions/[email protected] | |
with: | |
node-version: 18 | |
- name: Run make check | |
run: | | |
tools/ci-build.sh |