Skip to content

docs and fixes, ticker #8

docs and fixes, ticker

docs and fixes, ticker #8

Workflow file for this run

name: Rust CI
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup Rust
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build
run: cargo build --verbose --workspace
# - name: Test
# run: cargo test --verbose
- name: Clippy
run: cargo clippy --all-features --workspace
- name: Format
run: cargo fmt --verbose --all --check