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