Skip to content

Oops (#3407)

Oops (#3407) #2

Workflow file for this run

name: Test - Hosted
on:
workflow_dispatch:
inputs:
trigger-sha:
description: 'SHA to test (optional)'
required: false
type: string
default: 'HEAD'
jobs:
explore-linux:
runs-on: linux-x86-n2-16
container:
image: us-docker.pkg.dev/ml-oss-artifacts-published/ml-public-container/ml-build:latest
steps:
- name: Check Runner
run: echo "🎉 Linux Job: Running inside the container!"

Check failure on line 19 in .github/workflows/test_hosted.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_hosted.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
- name: Verify OS
run: cat /etc/os-release
explore-windows:
runs-on: windows-x86-n2-16
steps:
- name: Check Runner
run: echo "🎉 Windows Job: Running directly on the VM!"
- name: Verify OS
run: |
Get-CimInstance Win32_OperatingSystem | Select-Object Caption, Version