From ff28943460405cae34fdde3ffb4a59506654cd74 Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Sat, 17 Oct 2020 14:29:42 +0200 Subject: [PATCH] Add Integration Tests --- .github/workflows/integration-tests.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 0000000..4dddccd --- /dev/null +++ b/.github/workflows/integration-tests.yml @@ -0,0 +1,23 @@ +name: Integration Tests + +on: push + +jobs: + tests: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + with: + ref: master + + - name: Add Files + run: touch {a,b,c}.txt + + - name: Run git-auto-commit + id: "auto-commit-action" + uses: ./ + with: + commit_message: Message + checkout_options: -b + branch: ci-test