From 1a15f2928f2ef78e5231fbac30e22c189270b9be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sondre=20Lilleb=C3=B8=20Gundersen?= Date: Tue, 11 Oct 2022 16:32:14 +0800 Subject: [PATCH] chore: Add failing tests to reproduce #94 --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2428225f..1ea1dffb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,6 +7,30 @@ defaults: shell: bash jobs: + failing: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.8 + - uses: snok/install-poetry@main + with: + version: 1.2.1 + virtualenvs-create: false + + working: + runs-on: windows-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: 3.8 + - uses: ./ + with: + version: 1.2.1 + virtualenvs-create: false + # Make sure the action works using the default settings test-install: name: default ${{ matrix.poetry-version }} ${{ matrix.os }} ${{ matrix.python-version }}