feat: increase bluetooth power for better connection between halves #119
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: "Check Typos" | |
on: [push] | |
jobs: | |
typos: | |
runs-on: ubuntu-latest | |
steps: | |
- run: cargo install typos-cli | |
- uses: actions/checkout@v3 | |
- run: typos | |
- name: "Create fix patch" | |
if: failure() | |
run: | | |
set +e | |
typos --write-changes | |
git diff > typo_fixes.ptch | |
- name: "Upload fix patch" | |
if: failure() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: fixes | |
path: typo_fixes.ptch | |