Skip to content

Add Contributors section to honor PR author #5

Add Contributors section to honor PR author

Add Contributors section to honor PR author #5

Workflow file for this run

name: Tests
on:
push:
branches: [ master, main, 'pr-*', 'feature/*' ]
pull_request:
branches: [ master, main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync
- name: Run linting
run: |
uv run ruff check .
uv run ruff format --check .
- name: Run tests
run: uv run pytest -v --tb=short
- name: Run tests with coverage
run: |
uv run pip install pytest-cov
uv run pytest --cov=thaifin --cov-report=term --cov-report=xml
- name: Upload coverage reports
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: false
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}