chore(deps): update asdf-vm/actions action to v3 #3
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: Hygiene | |
on: | |
- pull_request | |
jobs: | |
hygiene: | |
name: Hygiene | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set-up Homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Install dependencies | |
run: brew install actionlint shellcheck shfmt | |
- name: Check linting with actionlint | |
run: | | |
if [ -d .github/workflows ]; then | |
actionlint | |
else | |
echo "::warning title=No .github/workflows directory::No .github/workflows directory found, skipping actionlint" | |
fi | |
- name: Check if Makefile exists | |
id: makefile | |
run: | | |
if [ -f Makefile ]; then | |
echo "exists=true" >>"$GITHUB_OUTPUT" | |
else | |
echo "exists=false" >>"$GITHUB_OUTPUT" | |
echo "::warning title=No Makefile::No Makefile found, skipping linting and formatting checks" | |
fi | |
- name: Check formatting with shfmt | |
run: make format-check | |
if: ${{ steps.makefile.outputs.exists == 'true' }} | |
- name: Check linting with shellcheck | |
run: make lint | |
if: ${{ steps.makefile.outputs.exists == 'true' }} |