diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index 8b98743..439385c 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -21,6 +21,8 @@ jobs: uses: actions/checkout@v4 - name: Use Cache uses: Swatinem/rust-cache@v2 + - name: Run tailwindcss + run: tailwindcss --input style/tailwind.css - name: Test project run: cargo test --all-targets --all-features @@ -31,6 +33,8 @@ jobs: uses: actions/checkout@v4 - name: Use Cache uses: Swatinem/rust-cache@v2 + - name: Run tailwindcss + run: tailwindcss --input style/tailwind.css - name: Generate docs run: cargo doc --no-deps - name: Upload docs @@ -56,6 +60,8 @@ jobs: uses: actions/checkout@v4 - name: Use Cache uses: Swatinem/rust-cache@v2 + - name: Run tailwindcss + run: tailwindcss --input style/tailwind.css - name: Run clippy env: RUSTFLAGS: "-D warnings"