Skip to content

docs: add custom element example #16

docs: add custom element example

docs: add custom element example #16

Workflow file for this run

name: Build & Test
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install nightly --component rustfmt --profile minimal
- run: rustup default nightly
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@v2
with:
tool: nextest
- run: cargo build --verbose
- run: cargo nextest run
- run: cargo test --verbose --doc
- uses: mbrobbel/rustfmt-check@master
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "chore(sync): fmt"