Skip to content

chore(deps): update compatible #358

chore(deps): update compatible

chore(deps): update compatible #358

Workflow file for this run

name: ci
on:
pull_request:
paths:
- '**'
- '!*.md'
- "!/LICENSE"
push:
branches:
- master
paths:
- '**'
- '!*.md'
- "!/LICENSE"
jobs:
test:
name: Test
strategy:
matrix:
os: ["ubuntu-latest"]
rust: ["stable"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
profile: minimal
override: true
- uses: Swatinem/rust-cache@v2
- name: Default features
run: cargo test --workspace