Skip to content

Commit

Permalink
Wrap in code fence
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Jul 31, 2024
1 parent d739d64 commit 9bb9e97
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,19 @@ jobs:
- name: Run nvim chechhealth
run: |
nix build .#checks.x86_64-linux.health
tee "$GITHUB_STEP_SUMMARY" <result
(
echo "# checkhealth"
echo '```'
cat result
echo '```'
) | tee "$GITHUB_STEP_SUMMARY"
- name: Run nvim startuptime
run: |
nix build .#checks.x86_64-linux.startuptime
tee "$GITHUB_STEP_SUMMARY" <result
nix build .#checks.x86_64-linux.startuptime
(
echo "# startuptime"
echo '```'
cat result
echo '```'
) | tee "$GITHUB_STEP_SUMMARY"

0 comments on commit 9bb9e97

Please sign in to comment.