Merge pull request 'Add basic CI on PR' (#6) from tbsliver/more-ci-fix into main

Reviewed-on: #6
This commit is contained in:
Tom Bloor 2025-03-07 16:08:31 +00:00
commit 9b6c784ac3
2 changed files with 11 additions and 2 deletions

View file

@ -0,0 +1,8 @@
on:
pull_request:
jobs:
ping:
runs-on: docker
steps:
- run: echo "Ping Pong, this is your runner speaking!"

View file

@ -10,5 +10,6 @@ jobs:
ping:
runs-on: docker
steps:
- run: echo "Ping Pong, this is your runner speaking!"
- run: echo "Printing Message: ${{ inputs.message }}"
- run: |
echo "Ping Pong, this is your runner speaking!"
echo "Printing Message: ${{ inputs.message }}"