Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Adds the example project to the overall workspace #35

Adds the example project to the overall workspace

Adds the example project to the overall workspace #35

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
CARGO_TERM_COLOR: always
RUSTUP_MAX_RETRIES: 10
jobs:
lint:
name: "lint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Install Rustfmt"
run: rustup component add rustfmt
- name: "rustfmt"
run: cargo fmt --all --check
test:
name: "test"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: nextest
- name: "Tests"
run: cargo nextest run
- name: "Doctests"
run: cargo test --doc