Skip to content

simplifying sdk

simplifying sdk #31

Workflow file for this run

name: Tests

Check failure on line 1 in .github/workflows/python-test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/python-test.yml

Invalid workflow file

(Line: 10, Col: 3): The identifier 'python-test.yml' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and must be less than 100 characters.
on:
push:
branches: [main]
pull_request:
branches: '*'
jobs:
python-test.yml:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@d0cc045d04ccac9d8b7881df0226f9e82c39688e # v6
with:
version: "latest"
enable-cache: true
- name: Install Python versions
run: uv python install 3.10 3.11 3.12
- name: Run Nox
env:
VANTAGE_API_KEY: ${{ secrets.VANTAGE_API_KEY }}
WORKSPACE_TOKEN: ${{ secrets.WORKSPACE_TOKEN }}
run: uv run nox
- name: Test build
run: uv build