diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..e71f0ad --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,17 @@ +name: Example Workflow + +on: + push: + branches: + - '*' + +jobs: + example_job: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Print branch name + run: echo "Branch name is ${{ github.ref }}"