Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ jobs:
run: rustup target add wasm32-unknown-unknown --toolchain stable

- name: Check on stable
run: cargo +stable clippy --all-targets -p utile -- -D warnings
run: cargo +stable clippy --all-targets -p utile -p puv -- -D warnings

- name: Check project (WASM) on stable
# Note lack of --all-targets here because tests and examples are not wasm compatible
run: cargo +stable clippy --target wasm32-unknown-unknown -p utile -- -D warnings
run: cargo +stable clippy --target wasm32-unknown-unknown -p utile -p puv -- -D warnings

test:
runs-on: ubuntu-latest
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/publish-puv-crates.io.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Publish `puv` on crates.io

on:
workflow_dispatch:

jobs:
publish-rust:
runs-on: ubuntu-latest
environment: crates.io
permissions:
id-token: write
steps:
- uses: actions/checkout@v7
- uses: rust-lang/crates-io-auth-action@v1
id: auth
- run: cargo publish -p puv
env:
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish on crates.io
name: Publish `utile` on crates.io

on:
workflow_dispatch:
Expand Down
Loading
Loading