chore: remove testing comment #25
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: Test rust | |
on: | |
push: | |
branches: | |
- trunk | |
pull_request: | |
branches: | |
- trunk | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy, llvm-tools-preview | |
- name: Install binutils | |
run: cargo install cargo-binutils | |
- name: Move config file | |
run: mv .cargo/config.toml .cargo/config2.toml | |
- name: Install required cargo-difftests helper binaries | |
run: cargo install --path cargo-difftests --bin rustc-wrapper-difftests --bin rustc-wrapper-difftests-workspace | |
- name: Move config file back | |
run: mv .cargo/config2.toml .cargo/config.toml | |
- name: Build | |
run: cargo build | |
- name: Test | |
run: cargo test |