Adding test workflow

This commit is contained in:
Julien Lengrand-Lambert
2023-06-23 16:35:15 +02:00
parent c8945f5346
commit 015226d6ab

15
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: A job to say hello
steps:
- name: Hello world action step
id: hello
uses: /jlengrand/github-repository-stats-action@v0.1
with:
who-to-greet: 'Mona the Octocat'
# Use the output from the `hello` step
- name: Get the output time
run: echo "The time was ${{ steps.hello.outputs.time }}"