11 lines
157 B
YAML
11 lines
157 B
YAML
|
on: [push]
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: docker
|
||
|
steps:
|
||
|
- run: echo All Good
|
||
|
|
||
|
test2:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- run: echo All Good
|