Merge pull request #7 from AlexFabre/feat/rename-script-to-project-ve… #102
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
# Code quality workflow | |
name: Code Quality | |
on: | |
push: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
Shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: ShellCheck action | |
uses: ludeeus/[email protected] | |
with: | |
version: v0.10.0 | |
Codespell: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Codespell action | |
uses: codespell-project/actions-codespell@v2 | |
with: | |
ignore_words_list: project-version | |