[Cargo] Force the tests to run single-threaded #15
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 | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- windows-latest | |
- ubuntu-latest | |
name: Testing on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Checkout repo | |
- uses: actions/checkout@v4 | |
# Setup Node.js | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
# Install npm deps | |
- name: Install npm dependencies | |
run: npm install --no-audit | |
# Build Vue frontend | |
- name: Build frontend | |
run: npm run build | |
# Set up Rust and Cargo | |
- name: Set up Rust toolchain | |
uses: dtolnay/rust-toolchain@v1 | |
with: | |
toolchain: 1.77.2 | |
# Run tests | |
- name: Run tests | |
run: cargo test-backend |