forked from Solcast/solcast-api-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (22 loc) · 702 Bytes
/
test.yml
File metadata and controls
28 lines (22 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Tests
on: [push]
jobs:
build:
strategy:
matrix:
os: ["ubuntu-latest", "macos-14", "windows-latest"]
python-version: ["3.8", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies with uv
run: |
uv python install ${{ matrix.python-version }}
uv sync --python ${{ matrix.python-version }} --extra all --all-groups
- name: Test with pytest
env:
SOLCAST_API_KEY: ${{ secrets.SOLCAST_API_KEY }}
run: |
uv run --python ${{ matrix.python-version }} --group test pytest tests