Bump actions/upload-artifact from 4 to 5 #46
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-and-test | |
| on: | |
| push: | |
| # all branches | |
| pull_request: | |
| branches: | |
| - main | |
| - master | |
| # This enables the Run Workflow button on the Actions tab. | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: dylan-lang/install-opendylan@v3 | |
| - name: Update dependencies | |
| run: dylan update | |
| - name: Build command-line-parser-test-suite-app | |
| run: dylan build command-line-parser-test-suite-app | |
| - name: Run command-line-parser-test-suite-app | |
| run: _build/bin/command-line-parser-test-suite-app |