From ec2dc03d19e79a0b31ba2abdc0a1949617133274 Mon Sep 17 00:00:00 2001 From: Aaron Batilo Date: Sun, 21 Jan 2024 15:06:53 -0700 Subject: [PATCH] fix: test v3 --- .github/workflows/test.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 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..2ad3042 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,29 @@ +name: test + +on: + pull_request: + branches: + - main + +jobs: + publish: + runs-on: ubuntu-20.04 + permissions: + contents: "read" + id-token: "write" + pull-requests: "write" + env: + POETRY_VERSION: 1.5.0 + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Set up Python + uses: actions/setup-python@v5 + - name: Setup poetry + uses: abatilo/actions-poetry@v3 + with: + poetry-version: ${{ env.POETRY_VERSION }} + - run: | + poetry --help + poetry --version