forked from Solcast/solcast-api-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
26 lines (24 loc) · 672 Bytes
/
test.yml
File metadata and controls
26 lines (24 loc) · 672 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
name: Tests
on: [push]
jobs:
build:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-13', 'windows-latest']
python-version: ["3.8", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[all]
- name: Test with pytest
env:
SOLCAST_API_KEY: ${{ secrets.SOLCAST_API_KEY }}
run: |
pytest tests