Skip to content

Add annotator test runner + LlamaGuard2, Llama 3 70b annotator test #1010

Add annotator test runner + LlamaGuard2, Llama 3 70b annotator test

Add annotator test runner + LlamaGuard2, Llama 3 70b annotator test #1010

Workflow file for this run

name: Python application
on:
push:
branches: [ "main" ]
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
id: setup-python
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install the project
run: poetry install --no-interaction
- name: Lint formatting
run: poetry run black --check .
- name: Validate Poetry state
run: poetry check
- name: Install with plugins
run: poetry install --no-interaction --extras all_plugins
- name: Run mypy
run: poetry run mypy .
- name: Test with pytest
run: poetry run pytest --nbmake
- name: Verify supported environments
run: poetry run tox