Skip to content

add CI pipelines

add CI pipelines #1

Workflow file for this run

---
on: [push, pull_request]
name: Continuous Integration
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
- 1.60.0 # MSRV
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- uses: actions-rs/cargo@v1
with:
command: build --all-features
- uses: actions-rs/cargo@v1
with:
command: test --all-features