diff --git a/.github/workflows/test-push.yml b/.github/workflows/test-push.yml new file mode 100644 index 0000000..1169137 --- /dev/null +++ b/.github/workflows/test-push.yml @@ -0,0 +1,25 @@ +name: Test Push +on: push +jobs: + foo: + name: Foo + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + ref: ${{github.ref}} + + - name: Foo + shell: bash + run: | + echo "foo" >> foo.txt + + - name: Push + shell: bash + run: | + git config --global user.name "GitHub Actions" + git config --global user.email "github-actions@hazelcast.com" + git add foo.txt + git commit -m "Foo" + git push \ No newline at end of file