From cedec357fc95e6653e73a6bf0e0ca85abe6a484b Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 26 Jan 2025 14:23:17 -0800 Subject: [PATCH] Update example workflow --- README.md | 20 ++++++-------------- 1 file changed, 6 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 28192ac..197447a 100644 --- a/README.md +++ b/README.md @@ -10,24 +10,16 @@ name: test suite on: [push, pull_request] jobs: - expand: - name: cargo expand + doc: + name: Documentation runs-on: ubuntu-latest steps: - - uses: dtolnay/install@master - with: - crate: cargo-expand - - run: cargo expand --help + - uses: actions/checkout@v4 + - uses: dtolnay/install@cargo-docs-rs + - run: cargo docs-rs ``` - - -## Inputs - -| Name | Required | Description | -| ------- | :------: | -------------------------------------------- | -| `crate` | ✓ | Name of crate as published to crates.io | -| `bin` | | Name of binary; default = same as crate name | + ## Security