chore: Implement feedback.

This commit is contained in:
Ivan Enderlin
2022-06-22 16:03:02 +02:00
parent 1604f24136
commit 8cd7fa9fb0
3 changed files with 4 additions and 5 deletions

View File

@@ -23,7 +23,6 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
os-name: 🐧

View File

@@ -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:

View File

@@ -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"