coordinator: add slog #43
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: stactic checks | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Install Nix | |
uses: cachix/install-nix-action@7ac1ec25491415c381d9b62f0657c7a028df52a7 # v24 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: nix flake check | |
run: nix -L flake check | |
generate: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: Install Nix | |
uses: cachix/install-nix-action@7ac1ec25491415c381d9b62f0657c7a028df52a7 # v24 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run code generations & tidying | |
run: nix run .#generate | |
- name: Check if modifications were made | |
run: | | |
diff=$(git diff) | |
if [[ -n "$diff" ]]; then | |
echo "Everything is tidy and generated." | |
exit 0 | |
fi | |
cat << EOF >> "${GITHUB_STEP_SUMMARY}" | |
\`\`\`diff | |
${diff} | |
\`\`\` | |
EOF |