Hello World #34
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: Hello World | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: # allows triggering the workflow run manually | |
| workflow_call: | |
| permissions: {} | |
| jobs: | |
| build: | |
| runs-on: linux-arm64-t2a-16 | |
| container: 'us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build-arm64:latest' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Simulate build | |
| run: | | |
| echo "Building the project..." | |
| sleep 10 | |
| echo "Build complete." | |
| exit 1 | |
| test: | |
| runs-on: linux-arm64-t2a-16 | |
| container: 'us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build-arm64:latest' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Intermediate step | |
| run: | | |
| echo "Running tests..." | |
| sleep 15 | |
| echo "Tests complete.." | |
| - name: Simulate testing | |
| run: | | |
| echo "Running tests." | |
| sleep 15 | |
| echo "Tests complete." |