Skip to content

Merge pull request #2 from caioribeiroclw-pixel/caio/pre-action-recei… #8

Merge pull request #2 from caioribeiroclw-pixel/caio/pre-action-recei…

Merge pull request #2 from caioribeiroclw-pixel/caio/pre-action-recei… #8

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install ruff
run: pip install ruff
- name: Run linter
run: ruff check .
typecheck:
name: Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install mypy
- name: Run type checker
run: mypy agentline/ --ignore-missing-imports
docker-build:
name: Docker Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t agentline .