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