Skip to content

Try implementing quit in TEI mode #82

Try implementing quit in TEI mode

Try implementing quit in TEI mode #82

Workflow file for this run

on:
pull_request: {}
push: {}
name: Continuous integration
jobs:
ci-go:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '^1.18.3'
- name: go test
run: |
go test ./...
ci-python:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: '3.10'
architecture: x64
cache: pip
- name: pip install
run: |
pip install -r python/requirements.txt
pip install -e python/
- name: pytest
run: |
cd python && pytest
env:
TEST_WANDB: true