use rust action instead
Some checks failed
Pipeline main branch / test (push) Failing after 7s

This commit is contained in:
continuist 2025-04-13 00:26:00 -04:00
parent 34a386ee9a
commit 3bb9abfcd6

View file

@ -10,13 +10,7 @@ jobs:
runs-on: ubuntu-latest # Or other appropriate runner runs-on: ubuntu-latest # Or other appropriate runner
steps: steps:
- uses: actions/checkout@v4 # Checkout the repository - uses: actions/checkout@v4 # Checkout the repository
- name: Install Rust toolchain - uses: actions-rs/toolchain@v1
run: | with:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y toolchain: stable
. "$HOME/.cargo/env" - run: cargo build --release --all-features
- name: Get cargo path
run: which cargo
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose