Skip to content

chore(crate): bump version #27

chore(crate): bump version

chore(crate): bump version #27

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
ci:
name: CI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: true
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Rustfmt
run: cargo fmt -- --check
- name: Build
run: cargo build
- name: Clippy
run: cargo clippy
- name: Test
run: cargo test