Skip to content

chore: bump to v0.4.8 #28

chore: bump to v0.4.8

chore: bump to v0.4.8 #28

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: Check & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Check
run: cargo check --no-default-features
- name: Test
run: cargo test --no-default-features
- name: Clippy
run: cargo clippy --no-default-features -- -D warnings