Remove use of deprecated Opaque Pointer API #88
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Spell Check | |
on: [pull_request] | |
jobs: | |
run: | |
name: typos | |
runs-on: "ubuntu-20.04" | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Check spelling | |
uses: crate-ci/[email protected] | |
- name: Help | |
if: always() | |
run: | | |
echo 'To run the check locally, install typos from https://github.com/crate-ci/typos and run `typos` in the repository.' | |
echo 'Run `typos -w` to automatically correct spelling mistakes.' | |
echo | |
echo 'Please add false positives to .typos.toml' |