chore: fix typos (#17)
This commit is contained in:
parent
3d6ab95662
commit
60fdfbb650
4 changed files with 7 additions and 7 deletions
2
.github/workflows/nostd.yml
vendored
2
.github/workflows/nostd.yml
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
# This workflow checks whether the library is able to run without the std library (e.g., embedded).
|
# This workflow checks whether the library is able to run without the std library (e.g., embedded).
|
||||||
# This entire file should be removed if this crate does not support no-std. See check.yml for
|
# This entire file should be removed if this crate does not support no-std. See check.yml for
|
||||||
# information about how the concurrency cancelation and workflow triggering works
|
# information about how the concurrency cancellation and workflow triggering works
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
on:
|
on:
|
||||||
|
|
|
||||||
4
.github/workflows/safety.yml
vendored
4
.github/workflows/safety.yml
vendored
|
|
@ -1,10 +1,10 @@
|
||||||
# This workflow runs checks for unsafe code. In crates that don't have any unsafe code, this can be
|
# This workflow runs checks for unsafe code. In crates that don't have any unsafe code, this can be
|
||||||
# removed. Runs:
|
# removed. Runs:
|
||||||
# - miri - detects undefined behavior and memory leaks
|
# - miri - detects undefined behavior and memory leaks
|
||||||
# - address santizer - detects memory errors
|
# - address sanitizer - detects memory errors
|
||||||
# - leak sanitizer - detects memory leaks
|
# - leak sanitizer - detects memory leaks
|
||||||
# - loom - Permutation testing for concurrent code https://crates.io/crates/loom
|
# - loom - Permutation testing for concurrent code https://crates.io/crates/loom
|
||||||
# See check.yml for information about how the concurrency cancelation and workflow triggering works
|
# See check.yml for information about how the concurrency cancellation and workflow triggering works
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
on:
|
on:
|
||||||
|
|
|
||||||
2
.github/workflows/scheduled.yml
vendored
2
.github/workflows/scheduled.yml
vendored
|
|
@ -1,6 +1,6 @@
|
||||||
# Run scheduled (rolling) jobs on a nightly basis, as your crate may break independently of any
|
# Run scheduled (rolling) jobs on a nightly basis, as your crate may break independently of any
|
||||||
# given PR. E.g., updates to rust nightly and updates to this crates dependencies. See check.yml for
|
# given PR. E.g., updates to rust nightly and updates to this crates dependencies. See check.yml for
|
||||||
# information about how the concurrency cancelation and workflow triggering works
|
# information about how the concurrency cancellation and workflow triggering works
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
on:
|
on:
|
||||||
|
|
|
||||||
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
|
@ -5,7 +5,7 @@
|
||||||
# requirements of this crate, and its dependencies
|
# requirements of this crate, and its dependencies
|
||||||
# - os-check: runs the test suite on mac and windows
|
# - os-check: runs the test suite on mac and windows
|
||||||
# - coverage: runs the test suite and collects coverage information
|
# - coverage: runs the test suite and collects coverage information
|
||||||
# See check.yml for information about how the concurrency cancelation and workflow triggering works
|
# See check.yml for information about how the concurrency cancellation and workflow triggering works
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
on:
|
on:
|
||||||
|
|
@ -91,8 +91,8 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, windows-latest]
|
os: [macos-latest, windows-latest]
|
||||||
steps:
|
steps:
|
||||||
# if your project needs OpenSSL, uncommment this to fix Windows builds.
|
# if your project needs OpenSSL, uncomment this to fix Windows builds.
|
||||||
# it's commented out by default as tthe install command takes 5-10m.
|
# it's commented out by default as the install command takes 5-10m.
|
||||||
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
|
||||||
# if: runner.os == 'Windows'
|
# if: runner.os == 'Windows'
|
||||||
# - run: vcpkg install openssl:x64-windows-static-md
|
# - run: vcpkg install openssl:x64-windows-static-md
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue