Skip to content

Commit

Permalink
test running on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi committed Dec 19, 2023
1 parent bf7fffc commit 592d50c
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,24 @@ jobs:
pip install tox tox-gh-actions
- name: Test with tox
run: tox


runs-on: windows-latest
strategy:
max-parallel: 4
matrix:
python-version: "3.11"

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install gettext
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox -e py311-django50

0 comments on commit 592d50c

Please sign in to comment.