Skip to content

[WIP] run unit tests on windows #4

[WIP] run unit tests on windows

[WIP] run unit tests on windows #4

Workflow file for this run

name: Unit Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Run Unit Tests
strategy:
matrix:
python-version: ["3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
shell: bash

Check failure on line 17 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Unit Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 17, Col: 5): Unexpected value 'shell'
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install
- name: Test
run: poetry run pytest