From 998bf8529871047ff5a1e4fd6eadc65d74772202 Mon Sep 17 00:00:00 2001 From: Simon Li Date: Thu, 23 Nov 2023 17:48:32 +0000 Subject: [PATCH] Create test.yml --- .github/workflows/test.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..729ae52 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,21 @@ +name: test + +on: + push: + +jobs: + test: + runs-on: ubuntu-22.04 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + # https://github.com/jupyterhub/action-major-minor-tag-calculator + - name: Get all relevant tags + id: gettags + uses: jupyterhub/action-major-minor-tag-calculator@main + with: + githubToken: ${{ secrets.GITHUB_TOKEN }} + prefix: "test:" + + - run: echo ${{ steps.gettags.outputs.tags }}