Skip to content

try running a single test to see if it works #5

try running a single test to see if it works

try running a single test to see if it works #5

Workflow file for this run

name: "Test and Build"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup env"
uses: JRMurr/[email protected]
- name: "Install python dependencies"
run: poetry install
shell: bash
- name: "Test"
run: poetry run python -m unittest tests/recognizer/flair_recognizer_test.py
shell: bash