feat: delete example in ci #388
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Test | |
on: | |
push: | |
branches: [ "*" ] | |
pull_request: | |
branches: [ "*" ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install pytest | |
if [ -f requirements/runtime.txt ]; then pip install -r requirements/runtime.txt; fi | |
pip install -e . | |
- name: Integration Test(local plaintext) | |
run: | | |
python -m dingo.run.cli --input .github/env/local_plaintext.json | |
python -m dingo.run.cli --input .github/env/local_plaintext_save.json | |
- name: Integration Test(local json) | |
run: | | |
python -m dingo.run.cli --input .github/env/local_json.json | |
- name: Integration Test(local jsonl) | |
run: | | |
python -m dingo.run.cli --input .github/env/local_jsonl.json | |
- name: Integration Test(local listjson) | |
run: | | |
python -m dingo.run.cli --input .github/env/local_listjson.json | |
- name: Integration Test(huggingface plaintext) | |
run: | | |
python -m dingo.run.cli --input .github/env/hf_plaintext.json | |
- name: Integration Test(huggingface json) | |
run: | | |
python -m dingo.run.cli --input .github/env/hf_plaintext.json | |
- name: Integration Test(huggingface jsonl) | |
run: | | |
python -m dingo.run.cli --input .github/env/hf_jsonl.json | |
- name: Integration Test(huggingface listjson) | |
run: | | |
python -m dingo.run.cli --input .github/env/hf_listjson.json | |
- name: Integration Test(custom config) | |
run: | | |
python -m dingo.run.cli --input .github/env/custom_config_rule.json | |
- name: Run unit tests | |
run: | | |
pytest test/scripts --ignore=test/scripts/data |