From 8cd7fa9fb0d0ab7dfd9adb4acb5ec537e4353fc6 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Wed, 22 Jun 2022 16:03:02 +0200 Subject: [PATCH] chore: Implement feedback. --- .github/workflows/appservice.yml | 1 - .github/workflows/{docs.yml => documentation.yml} | 6 +++--- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) rename .github/workflows/{docs.yml => documentation.yml} (92%) diff --git a/.github/workflows/appservice.yml b/.github/workflows/appservice.yml index c4c32ed4c..1f16b4725 100644 --- a/.github/workflows/appservice.yml +++ b/.github/workflows/appservice.yml @@ -23,7 +23,6 @@ jobs: strategy: fail-fast: true matrix: - os: [ubuntu-latest, macos-latest] include: - os: ubuntu-latest os-name: 🐧 diff --git a/.github/workflows/docs.yml b/.github/workflows/documentation.yml similarity index 92% rename from .github/workflows/docs.yml rename to .github/workflows/documentation.yml index 5157ab131..9a1642dd8 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/documentation.yml @@ -1,4 +1,4 @@ -name: Documentations +name: Documentation on: push: @@ -26,7 +26,7 @@ jobs: uses: Swatinem/rust-cache@v1 # Keep in sync with xtask docs - - name: Build documentations + - name: Build documentation uses: actions-rs/cargo@v1 env: # Work around https://github.com/rust-lang/cargo/issues/10744 @@ -36,7 +36,7 @@ jobs: command: doc args: --no-deps --workspace --features docsrs - - name: Deploy documentations + - name: Deploy documentation if: github.event_name == 'push' && github.ref == 'refs/heads/main' uses: peaceiris/actions-gh-pages@v3 with: diff --git a/Cargo.toml b/Cargo.toml index 20930182f..8ba8533fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ "labs/*", "xtask", ] -# xtask, labs and the bindings should only be invoked explicitly +# xtask, labs and the bindings should only be built when invoked explicitly. default-members = ["benchmarks", "crates/*"] resolver = "2"