All checks were successful
/ test (push) Successful in 17s
- Created a new demo.yaml file for GitHub Actions to run a basic test job - Configured the workflow to execute a simple echo command on push events
6 lines
83 B
YAML
6 lines
83 B
YAML
on: [push]
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
steps:
|
|
- run: echo All Good
|