Skip to content

Commit

Permalink
Create windows.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
capjamesg authored Aug 24, 2024
1 parent 757d4aa commit 4886a75
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: JameSQL Test Workflow (Windows)

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
build-dev-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["windows-latest"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v4
- name: 🐍 Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
check-latest: true

- name: 📦 Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install -e .[dev]
- name: 🧪 Test
run: |
python -m pytest tests

0 comments on commit 4886a75

Please sign in to comment.