Skip to content

Commit

Permalink
Create basic-hello.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
corne-ac authored May 3, 2024
1 parent ef3847c commit b0824cd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/basic-hello.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
push:
branches:
- main

jobs:
hello_job:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: say hello
run: |
echo "hello"
echo "world"
echo "::debug::running on: ${{ matrix.os }}"

0 comments on commit b0824cd

Please sign in to comment.