Skip to content

Add GitHub Actions CI/CD pipeline (#19) #3

Add GitHub Actions CI/CD pipeline (#19)

Add GitHub Actions CI/CD pipeline (#19) #3

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: latest
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Lint with ruff
run: |
poetry run ruff check src tests
poetry run ruff format --check src tests
- name: Type check with mypy
run: poetry run mypy src
- name: Test with pytest
run: poetry run pytest tests/test_main.py tests/test_simple.py -v --tb=short
- name: Test coverage
run: poetry run pytest tests/test_main.py tests/test_simple.py --cov=ghostrider --cov-report=xml
- name: Upload coverage to Codecov
if: matrix.python-version == '3.12'
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
fail_ci_if_error: false