Skip to content

First Challenge

First Challenge #5

Workflow file for this run

name: first
on: push
jobs:
job1:
name: First job
runs-on: ubuntu-latest
steps:
- name: Step one
run: date
job2:
name: Second job
runs-on: windows-latest
steps:
- name: Step one
run: Get-Date
job3:
name: Third job
runs-on: macos-latest
steps:
- name: Step one
run: "date -j -u -f "%m/%d/%y %H:%M:%S" +%s "08/08/20 20:20:00""

Check failure on line 23 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 23
job4:
name: Fourth job
runs-on: ubuntu-latest
needs: [job1, job2, job3]
steps:
- name: Step one
run: date