Skip to content

Commit

Permalink
my first action
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien-Abulfeda committed Feb 3, 2024
1 parent 3d526b0 commit db549a9
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/my_first_workflow.yaml
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: echo "Hello world"
- name: multiline script
run: |
python3 -V
touch my_file_with_workflow.py
ls -l

0 comments on commit db549a9

Please sign in to comment.