Skip to content

fix typo in TailwindJoin struct #24

fix typo in TailwindJoin struct

fix typo in TailwindJoin struct #24

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --all-features
- name: Run clippy
run: cargo clippy --verbose -- -D warnings
- name: Check README.md
id: check_readme
run: |
cargo install cargo-rdme
cargo rdme --check
continue-on-error: true
- name: Warning for README.md check failure
if: failure() && steps.check_readme.outcome == 'failure'
run: echo "README.md check failed. Please run 'cargo rdme' to update your README.md based on doc comments."