You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: Say hello
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
hello_world:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
|
|
- name: Echo the message
|
|
|
|
run: |
|
|
|
|
echo "Hola midu!"
|
|
|
|
- name: Dime la fecha
|
|
|
|
run: date
|
|
|
|
- run: ls -l
|