From 08449b343e1295a5645a1bad539d81b2781eca5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20S=C3=B8rensen?= Date: Wed, 19 Jun 2024 11:19:09 +0200 Subject: [PATCH] Create WIP --- .github/workflows/integration-tests.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/integration-tests.yml diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml new file mode 100644 index 00000000..320b9e4b --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,18 @@ +name: Integration Tests +run-name: Run Integration Test for commit ${{ github.sha }} +on: + workflow_dispatch: {} + push: + branches: + - ci/* + +jobs: + echo-hello-world: + name: Echo Hello World + runs-on: ubuntu-latest + strategy: + fail-fast: false + steps: + - name: Echo Hello World + run: | + echo "Hello World"