Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/my_first_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Shell commands
on: [push]
jobs:
run-shell-command:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-20.04]
steps:
- name: echo a string
run: echoo "Hello world"
- name: multiline script
run: |
python3 -V
touch my_file_with_workflow.py
ls -l