mirror of
https://github.com/github/codeql.git
synced 2026-02-23 18:33:42 +01:00
24 lines
356 B
YAML
24 lines
356 B
YAML
on: push
|
|
|
|
jobs:
|
|
job1:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- shell: pwsh
|
|
run: Write-Output "foo"
|
|
job2:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "foo"
|
|
|
|
job3:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- shell: bash
|
|
run: echo "foo"
|
|
job4:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- run: Write-Output "foo"
|
|
|