Skip to content

chore: initial commit #1

chore: initial commit

chore: initial commit #1

Workflow file for this run

name: Build
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
on:
push:
paths:
- '**/*.rs'
- Cargo.lock
- Cargo.toml
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
- name: Set up Rust
uses: actions-rs/toolchain@master
- name: Build
run: cargo build --all-features
- name: Build examples
run: cargo build --examples