From d4e2127557e6333257acd1eeb53e1d9b8273ff4b Mon Sep 17 00:00:00 2001 From: Chiara Dinan Date: Wed, 26 Jun 2024 11:35:58 +0100 Subject: [PATCH] Add workflow file --- .github/workflows/continuous-integration-workflow.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/continuous-integration-workflow.yml diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml new file mode 100644 index 0000000..a1d85b3 --- /dev/null +++ b/.github/workflows/continuous-integration-workflow.yml @@ -0,0 +1,9 @@ +name: Continuous Integration +on: [push] # Will make the workflow run every time you push to any branch + +jobs: + build: + name: Build and test + runs-on: ubuntu-latest # Sets the build environment a machine with the latest Ubuntu installed + steps: + - uses: actions/checkout@v4 # Adds a step to checkout the repository code \ No newline at end of file