Skip to content

Update first.yml

Update first.yml #3

Workflow file for this run

name: first
on: push
jobs:
job1:
name: First job

Check failure on line 7 in .github/workflows/first.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/first.yml

Invalid workflow file

You have an error in your yaml syntax on line 7
runs-on: ubuntu-latest
steps:
- name: Step one
uses: actions/checkout@v2
- name: Step two
run: env | sort
job2:
name: Second job
runs-on: windows-latest
steps:
- name: Step one
uses: actions/checkout@v2
- name: Step two
run: "Get-ChildItem Env: | Sort-Object Name"