mirror of
https://github.com/PrefectHQ/fastmcp.git
synced 2026-08-09 15:19:10 +02:00
Set up multiple os tests
This commit is contained in:
parent
0f2b5a32d9
commit
10e2db7c0c
1 changed files with 9 additions and 4 deletions
13
.github/workflows/run-tests.yml
vendored
13
.github/workflows/run-tests.yml
vendored
|
|
@ -26,8 +26,13 @@ permissions:
|
|||
|
||||
jobs:
|
||||
run_tests:
|
||||
name: Run tests
|
||||
runs-on: ubuntu-latest
|
||||
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
python-version: ["3.10"]
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
@ -35,8 +40,8 @@ jobs:
|
|||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@v4
|
||||
|
||||
- name: Set up Python
|
||||
run: uv python install 3.11
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
run: uv python install ${{ matrix.python-version }}
|
||||
|
||||
- name: Install FastMCP
|
||||
run: uv sync --extra dev
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue