diff --git a/.github/workflows/hello-world.yml b/.github/workflows/hello-world.yml new file mode 100644 index 0000000..2a10b49 --- /dev/null +++ b/.github/workflows/hello-world.yml @@ -0,0 +1,9 @@ +name: Test +on: push + +jobs: + test-backend: + runs-on: ubuntu-latest + steps: + - name: Hello world + run: echo "Hello world" \ No newline at end of file