mirror of
https://github.com/BoPeng/ai-marketplace-monitor.git
synced 2025-12-23 22:28:18 -05:00
* Switch from poetry to uv * Suppress an info message (close #204) * Fix end of line for markdown files
112 lines
2.8 KiB
YAML
112 lines
2.8 KiB
YAML
name: tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
pull_request:
|
|
branches:
|
|
|
|
jobs:
|
|
linting:
|
|
name: Linting
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
|
|
- name: Set up Python 3.12
|
|
uses: actions/setup-python@v5.6.0
|
|
with:
|
|
python-version: 3.12
|
|
|
|
- name: Install system deps
|
|
shell: bash
|
|
run: |
|
|
pip install uv
|
|
uv sync --extra dev --extra linters
|
|
|
|
- name: Linting
|
|
shell: bash
|
|
run: uv run pre-commit run --all-files
|
|
|
|
tests:
|
|
needs: linting
|
|
name: ${{ matrix.os }} / ${{ matrix.python-version }}
|
|
runs-on: ${{ matrix.os }}-latest
|
|
strategy:
|
|
matrix:
|
|
os: [Ubuntu, MacOS]
|
|
python-version: ["3.10", "3.11", "3.12"]
|
|
fail-fast: true
|
|
steps:
|
|
- uses: actions/checkout@v4.2.2
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5.6.0
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install system deps
|
|
shell: bash
|
|
run: |
|
|
pip install nox
|
|
pip install uv
|
|
|
|
- name: Run mypy with nox
|
|
shell: bash
|
|
run: nox --force-color -s mypy-${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies and Playwright Browsers
|
|
run: |
|
|
uv sync --extra dev --extra test
|
|
uv run playwright install --with-deps
|
|
|
|
- name: Run tests with nox
|
|
shell: bash
|
|
run: nox --force-color -s tests-${{ matrix.python-version }}
|
|
|
|
- name: Run securtity check
|
|
if: matrix.python-version == '3.12' && matrix.os == 'Ubuntu'
|
|
shell: bash
|
|
run: nox --force-color -s security
|
|
|
|
- name: Upload coverage data
|
|
uses: actions/upload-artifact@v4.6.1
|
|
with:
|
|
name: ${{ matrix.os }}-${{ matrix.python-version }}.coverage-data
|
|
path: ".coverage.*"
|
|
include-hidden-files: true
|
|
retention-days: 2
|
|
|
|
# coverage:
|
|
# needs: tests
|
|
# runs-on: ubuntu-latest
|
|
# steps:
|
|
# - uses: actions/checkout@v4.2.2
|
|
|
|
# - name: Set up Python 3.12
|
|
# uses: actions/setup-python@v5.6.0
|
|
# with:
|
|
# python-version: 3.12
|
|
|
|
# - name: Install system deps
|
|
# shell: bash
|
|
# run: |
|
|
# pip install nox==1.1.0
|
|
# pip install uv==1.8.5
|
|
|
|
# - name: Download coverage data
|
|
# uses: actions/download-artifact@v4.1.8
|
|
# with:
|
|
# pattern: "*.coverage-data"
|
|
# merge-multiple: true
|
|
|
|
# - name: Create coverage report
|
|
# shell: bash
|
|
# run: |
|
|
# nox --force-color --session=coverage -- --fmt xml
|
|
|
|
# - name: Upload coverage report
|
|
# uses: codecov/codecov-action@v5.1.2
|
|
# with:
|
|
# token: ${{ secrets.CODECOV_TOKEN }}
|