Sep carousel #887
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: BSSw.io Codespell | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
codespell-source: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Print GitHub Actions Environment Variables | |
run: | | |
set | grep "^GITHUB_" | |
- name: Update OS | |
run: | | |
sudo apt-get update -y | |
- name: Install packages | |
run: | | |
sudo apt-get install -y codespell | |
- name: Run Codespell on source code | |
run: | | |
codespell |