meta: Update README.md to reflect Hugo migration #10
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 Commit | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
pre-commit: | |
name: "run pre-commit" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Add brew to PATH # https://github.com/actions/runner-images/issues/6283 | |
if: runner.os == 'Linux' | |
run: echo "/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin" >> $GITHUB_PATH | |
- name: Install just | |
run: brew install just | |
- uses: pre-commit/[email protected] |