Build CSS for jobs that need the asset
All checks were successful
Push Workflows / rustfmt (push) Successful in 9s
Push Workflows / tailwind-build (push) Successful in 8s
Push Workflows / test (push) Successful in 20s
Push Workflows / docs (push) Successful in 20s
Push Workflows / clippy (push) Successful in 17s
Push Workflows / build (push) Successful in 1m55s
Push Workflows / nix-build (push) Successful in 4m55s

This commit is contained in:
2026-06-17 20:50:25 -04:00
parent fae449acda
commit fbe13f8d49

View File

@@ -9,6 +9,8 @@ jobs:
uses: actions/checkout@v4
- name: Use Cache
uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css --output assets/tailwind.css
- name: Build project
env:
RUSTFLAGS: "-D warnings"
@@ -21,6 +23,8 @@ jobs:
uses: actions/checkout@v4
- name: Use Cache
uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css --output assets/tailwind.css
- name: Test project
run: cargo test --all-targets --all-features
@@ -31,6 +35,8 @@ jobs:
uses: actions/checkout@v4
- name: Use Cache
uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css --output assets/tailwind.css
- name: Generate docs
run: cargo doc --no-deps
- name: Upload docs
@@ -56,6 +62,8 @@ jobs:
uses: actions/checkout@v4
- name: Use Cache
uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css --output assets/tailwind.css
- name: Run clippy
env:
RUSTFLAGS: "-D warnings"