Update mixins #26
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: Mixins | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
mixins: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Render mixins | |
run: make | |
- name: Check for changed mixins | |
run: | | |
if [[ $(git status --short docs | wc -l) -ne 0 ]]; then | |
echo "Detected changes in the rendered docs files. Please run 'make' locally and commit the changes." | |
git status --short docs | |
exit 1 | |
fi | |
id: status |