Skip to content

[stow] Start initial STOW-RS implementation #13

[stow] Start initial STOW-RS implementation

[stow] Start initial STOW-RS implementation #13

Workflow file for this run

name: continuous integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test (default)
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.78.0
- stable
- beta
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.rust }}
components: clippy
cache: true
# Run tests
- name: Run tests
run: cargo test --all