Added documentation for all SDF utils directly in the README #2
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: Test Workspace Compilation | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
compile-workspace: | |
runs-on: ubuntu-latest | |
name: Compile SDF Workspace | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run sdf compile | |
uses: sdf-labs/sdf-action@v0 | |
id: sdf | |
with: | |
command: 'sdf compile' | |
# Use the output from the `sdf` step | |
- name: Display the sdf output | |
run: | | |
echo "### SDF Run Logs 🪵" >> $GITHUB_STEP_SUMMARY | |
echo '```' >>$GITHUB_STEP_SUMMARY | |
echo "${{ steps.sdf.outputs.log }}" >>$GITHUB_STEP_SUMMARY | |
echo '```' >>$GITHUB_STEP_SUMMARY |