diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51f290b10..3ad0ee0a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,6 +7,20 @@ on: jobs: windows: runs-on: windows-latest + env: + DUMMY_CONVERSION: True + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: '3.10' + - run: pip install poetry + - run: poetry install + - name: Run CLI tests + run: poetry run pytest -v + + macOS: + runs-on: macos-latest env: DUMMY_CONVERSION: True steps: