Skip to content

Commit

Permalink
Add linting and testing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
p-goulart committed Jan 12, 2024
1 parent 353ab59 commit 0c7a297
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Flake8

on:
push:
paths:
- "**/*.py"
- "pyproject.toml"
- "poetry.lock"
- ".github/workflows/flake8.yml"

jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
exclude: "**/.archive/"
43 changes: 43 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Pytest

on:
push:
paths:
- "**/*.py"
- "tests/"
- "pyproject.toml"
- "poetry.lock"
- ".github/workflows/pytest.yml"

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11"]
env:
LT_HOME: foo/lt/home
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
- name: Check Poetry config
run: poetry check
- name: Install dependencies
run: poetry install --with test
env:
POETRY_HTTP_BASIC_GITLAB_USERNAME: "lt-ai-package-registry"
POETRY_HTTP_BASIC_GITLAB_PASSWORD: ${{ secrets.POETRY_HTTP_BASIC_GITLAB_PASSWORD }}
- name: Install spaCy pipeline
run: poetry run spacy download pt_core_news_sm
- name: Pytest
uses: pavelzw/pytest-action@v2
with:
custom-pytest: "poetry run pytest"
emoji: true
verbose: true
job-summary: true

0 comments on commit 0c7a297

Please sign in to comment.