diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 37b4cc5..14e13f6 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,23 +14,13 @@ jobs: - uses: actions/setup-rust@v1 with: rust-version: '1.75' - profile: minimal - - run: cargo check - - run: cargo test --all -- --test-threads=4 - - run: cargo clippy --all-features -- -D warnings - - build: - runs-on: ubuntu-latest - needs: test - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-rust@v1 - with: - rust-version: '1.75' - profile: minimal - - run: cargo build --release - - name: Upload binary - uses: actions/upload-artifact@v4 - with: - name: tui-generator-cli - path: target/release/tui-generator + targets: 'wasm32-unknown-unknown' + - name: Install dependencies + run: | + cargo check --all-targets + - name: Run tests + run: | + cargo test --all + - name: Run clippy + run: | + cargo clippy --all -- -D warnings