Skip to content

Merge pull request #50 from GF-D6/main #147

Merge pull request #50 from GF-D6/main

Merge pull request #50 from GF-D6/main #147

Workflow file for this run

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