Compare commits

...

2 commits

Author SHA1 Message Date
b0cc60971e Print git status if worktree is dirty
Some checks are pending
/ verify (push) Waiting to run
2026-02-18 05:23:00 -03:00
edd1dc1016 Move clippy to nightly rustup call on publish workflow 2026-02-18 05:20:23 -03:00
3 changed files with 4 additions and 3 deletions

View file

@ -23,8 +23,8 @@ jobs:
- name: Setup Rust toolchain
run: |
rustup component add clippy llvm-tools-preview
rustup component add --toolchain nightly rustfmt
rustup component add llvm-tools-preview
rustup component add --toolchain nightly rustfmt clippy
- name: Setup additional tooling
run: |

View file

@ -226,6 +226,7 @@ verify:
export RUSTFLAGS=${RUSTFLAGS:-"-Dwarnings"}
if [ -n "$(git status --porcelain)" ]; then
echo "Git working tree is dirty: Commit or stash your changes first"
git status
exit 1
fi
{{ just_cmd }} version-assess format-assess lint-assess check test cover-assess

View file

@ -1,6 +1,6 @@
[package]
name = "en"
version = "0.1.0"
version = "0.1.1"
description = "A non-linear writing instrument."
license = "AGPL-3.0-only"