Compare commits

...

2 Commits

Author SHA1 Message Date
738b57b7b7 Build CSS for jobs that need the asset
Some checks failed
Push Workflows / rustfmt (push) Successful in 54s
Push Workflows / tailwind-build (push) Successful in 55s
Push Workflows / docs (push) Failing after 2m8s
Push Workflows / clippy (push) Failing after 2m14s
Push Workflows / test (push) Failing after 2m21s
Push Workflows / build (push) Failing after 3m5s
Push Workflows / nix-build (push) Has been cancelled
2026-06-17 20:50:25 -04:00
fae449acda Add tailwind-build job 2026-06-17 20:50:08 -04:00

View File

@@ -21,6 +21,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Use Cache - name: Use Cache
uses: Swatinem/rust-cache@v2 uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css
- name: Test project - name: Test project
run: cargo test --all-targets --all-features run: cargo test --all-targets --all-features
@@ -31,6 +33,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Use Cache - name: Use Cache
uses: Swatinem/rust-cache@v2 uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css
- name: Generate docs - name: Generate docs
run: cargo doc --no-deps run: cargo doc --no-deps
- name: Upload docs - name: Upload docs
@@ -56,6 +60,8 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Use Cache - name: Use Cache
uses: Swatinem/rust-cache@v2 uses: Swatinem/rust-cache@v2
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css
- name: Run clippy - name: Run clippy
env: env:
RUSTFLAGS: "-D warnings" RUSTFLAGS: "-D warnings"
@@ -68,3 +74,11 @@ jobs:
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Run rustfmt - name: Run rustfmt
run: cargo fmt --check run: cargo fmt --check
tailwind-build:
runs-on: libretunes-cicd-dx
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tailwindcss
run: tailwindcss --input style/tailwind.css