v8 uses immutable releases (no major/minor tags) for supply chain security. Pinning to exact version tag per upstream recommendation.
85 lines
2.1 KiB
YAML
85 lines
2.1 KiB
YAML
name: unit-tests
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- 'codeflash/**'
|
|
- 'codeflash-benchmark/**'
|
|
- 'codeflash-java-runtime/**'
|
|
- 'tests/**'
|
|
- 'packages/**'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
pull_request:
|
|
paths:
|
|
- 'codeflash/**'
|
|
- 'codeflash-benchmark/**'
|
|
- 'codeflash-java-runtime/**'
|
|
- 'tests/**'
|
|
- 'packages/**'
|
|
- 'pyproject.toml'
|
|
- 'uv.lock'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref_name }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
unit-tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: ubuntu-latest
|
|
python-version: "3.9"
|
|
- os: ubuntu-latest
|
|
python-version: "3.10"
|
|
- os: ubuntu-latest
|
|
python-version: "3.11"
|
|
- os: ubuntu-latest
|
|
python-version: "3.12"
|
|
- os: ubuntu-latest
|
|
python-version: "3.13"
|
|
- os: ubuntu-latest
|
|
python-version: "3.14"
|
|
- os: windows-latest
|
|
python-version: "3.13"
|
|
continue-on-error: true
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
PYTHONIOENCODING: utf-8
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up JDK 11
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '11'
|
|
distribution: 'temurin'
|
|
cache: maven
|
|
|
|
- name: Build codeflash-runtime JAR
|
|
run: |
|
|
cd codeflash-java-runtime
|
|
mvn clean package -q -DskipTests
|
|
mvn install -q -DskipTests
|
|
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v8.0.0
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: install dependencies
|
|
run: uv sync
|
|
|
|
- name: Install test-only dependencies (Python 3.9 and 3.13)
|
|
if: matrix.python-version == '3.9' || matrix.python-version == '3.13'
|
|
run: uv sync --group tests
|
|
|
|
- name: Unit tests
|
|
run: uv run pytest tests/
|