Skip to content

ci(workflows): update Pages deployment command to use renamed project… #85

ci(workflows): update Pages deployment command to use renamed project…

ci(workflows): update Pages deployment command to use renamed project… #85

Workflow file for this run

name: Run tests
on:
push:
branches: ["**"]
pull_request:
branches: ["main"]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run tests
run: cargo test --verbose