diff --git a/.github/workflows/checkout.yml b/.github/workflows/checkout.yml new file mode 100644 index 0000000..6578f58 --- /dev/null +++ b/.github/workflows/checkout.yml @@ -0,0 +1,21 @@ +name: Test checkout + +on: + push: + tags: + - 'test*' + +jobs: + test_checkout_no_actions: + runs-on: ubuntu-latest + permissions: + contents: write # needed to create releases + steps: + - name: Environment Variables + run: pwd; env + - name: Checkout + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh repo clone $GITHUB_REPOSITORY . -- --depth 1 + - name: List files + run: find $(pwd) \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6adc1a4..bb2be3c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,8 +2,7 @@ name: run-test-on-push on: push: branches: - - master - # - feature/embed-http-server + - test jobs: run-script: