improve Result::and_then #210
Workflow file for this run
This file contains hidden or 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: Build Action | |
| on: | |
| push: | |
| branches: "**" | |
| pull_request: | |
| branches: "**" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build Project | |
| id: build | |
| uses: ZestCommunity/[email protected] | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| continue-on-error: true # The main point of this is to build the monolith file, not to try and upload it. Therefore, the action shouldn't fail if something were to be changed in the future that would cause this step to fail. (Especially considering ZestCode is still in development and this may very well change. | |
| with: | |
| name: ${{ steps.build.outputs.name }} | |
| path: ${{ github.workspace }}/build/program.bin |