Skip to content

build(deps): bump the deps group across 1 directory with 3 updates (#11) #81

build(deps): bump the deps group across 1 directory with 3 updates (#11)

build(deps): bump the deps group across 1 directory with 3 updates (#11) #81

Workflow file for this run

name: CI
on:
merge_group:
pull_request:
push:
branches: [main]
tags: ['v*.*.*']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
jobs:
test:
strategy:
fail-fast: false
matrix:
platform:
- macos
- ubuntu
- windows
name: Test on ${{ matrix.platform }}
runs-on: ${{ matrix.platform }}-latest
steps:
- uses: actions/checkout@v4
- name: Configure toolchain
run: |
rustup toolchain install --profile minimal --no-self-update stable
rustup default stable
- uses: Swatinem/rust-cache@v2
- run: cargo test
- run: cargo clippy