Skip to content

feat: no more html attributes, everything is now in the sdk #111

feat: no more html attributes, everything is now in the sdk

feat: no more html attributes, everything is now in the sdk #111

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rustfmt
- run: cargo test --locked
fmt:
name: cargo fmt
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: nightly-2024-10-15
components: rustfmt
- uses: clechasseur/rs-fmt-check@v2
with:
toolchain: nightly-2024-10-15
clippy:
name: clippy
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy
- uses: wearerequired/lint-action@master
with:
clippy: true