From f154c35869a9a66c41ae1b7e0f38611d8da2b24f Mon Sep 17 00:00:00 2001 From: Eros Candelaresi Date: Thu, 15 Jul 2021 14:31:48 +0200 Subject: [PATCH] Add Github action definition --- .github/workflows/petclinic.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .github/workflows/petclinic.yaml diff --git a/.github/workflows/petclinic.yaml b/.github/workflows/petclinic.yaml new file mode 100644 index 000000000..e27eb5722 --- /dev/null +++ b/.github/workflows/petclinic.yaml @@ -0,0 +1,7 @@ +name: Build Petclinic +on: [ push ] +jobs: + Build-Petclinic: + runs-on: ubuntu-latest + steps: + run: echo "Hello Github Actions" \ No newline at end of file