Skip to content

Bump actions/checkout from 5 to 6 (#8) #14

Bump actions/checkout from 5 to 6 (#8)

Bump actions/checkout from 5 to 6 (#8) #14

Workflow file for this run

---
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
use-cache:
- true
- false
defaults:
run:
working-directory: tests
steps:
- uses: actions/checkout@v6
- uses: ./
with:
toolchain: ${{ matrix.toolchain }}
use-cache: ${{ matrix.use-cache }}
components: rustfmt
workspaces: tests
- run: cargo fmt --check
- run: cargo check
- run: cargo build --release