Skip to content

Commit 238082d

Browse files
committed
my first action
1 parent 7ebfc1a commit 238082d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Shell commands
2+
on: [push]
3+
jobs:
4+
run-shell-command:
5+
runs-on: ${{ matrix.os }}
6+
strategy:
7+
matrix:
8+
os: [ubuntu-latest, ubuntu-20.04]
9+
steps:
10+
- name: echo a string
11+
run: echo "Hello world"
12+
- name: multiline script
13+
run: |
14+
python3 -V
15+
touch my_file_with_workflow.py
16+
ls -l

0 commit comments

Comments
 (0)