-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (24 loc) · 754 Bytes
/
Copy pathon-push.yml
File metadata and controls
31 lines (24 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: CI on push
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: List and read files
run: |
echo "Reading files"
ls -ltra
cat README.md
- name: Install cowsay program
run: sudo apt-get install cowsay -y
- name: Generate ASCII Character
run: cowsay -f dragon "Run for cover, iam a dragon." >> dragon.txt
- name: Show Dragon
run: cat dragon.txt
- name: runs on one line script
run: echo "hello world"