Skip to content

add CI shell and install node needed by github actions #7

add CI shell and install node needed by github actions

add CI shell and install node needed by github actions #7

Workflow file for this run

name: "Test and Build"
on: [push]
env:
DEV_SHELL_NAME: CI
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