html-pipe 0.1.1

A basic html component builder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
on: [push]

jobs:
  code-checking:
    runs-on: ubuntu-latest
    concurrency:
      group: ${{ github.ref }}-code-checking
      cancel-in-progress: true
    steps:
      - uses: actions/checkout@v4
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo fmt --all --check
      - run: cargo check --all-features --tests
      - run: cargo clippy --all-targets --all-features --tests