diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..69f3f9b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +on: + push: + tags: + - '*' + +name: Test tags + +jobs: + deploy: + name: Deploy + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + - run: git status; git describe --tags + +