19 lines
333 B
YAML
19 lines
333 B
YAML
on: [push]
|
|
|
|
jobs:
|
|
|
|
run:
|
|
name: Run
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Run a one-line script
|
|
run: echo Hello, world!
|
|
|
|
- name: Run a multi-line script
|
|
run: |
|
|
echo Add other actions to build,
|
|
echo test, and deploy your project.
|