Skip to content

SP3-a: providing support #78

SP3-a: providing support

SP3-a: providing support #78

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
tags:
- "*"
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- uses: actions-rs/cargo@v1
name: Linter
with:
command: fmt
args: --all -- --check
- uses: actions-rs/toolchain@v1
name: Install Rust
with:
toolchain: 1.82.0
override: true
- name: Build
run: cargo build
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features
- name: Documentation
run: cargo doc --all-features