mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.0 KiB
32 lines
1.0 KiB
name: Test installation and doccano commands
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "15 22 * * *"
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
python-version: ["3.8", "3.9", "3.10"]
|
|
steps:
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: Enabling JSON1 extension on SQLite
|
|
if: ${{ startsWith(matrix.os, 'windows') && matrix.python-version == '3.8' }}
|
|
shell: bash
|
|
run: |
|
|
export VERSION=`python -V | cut -f2 -d " "`
|
|
curl -LO https://www.sqlite.org/2022/sqlite-dll-win64-x64-3390300.zip
|
|
unzip sqlite-dll-win64-x64-3390300.zip
|
|
mv sqlite3.dll /c/hostedtoolcache/windows/Python/$VERSION/x64/DLLs/
|
|
- name: Test installation
|
|
run: pip install doccano
|
|
- name: Test doccano init command
|
|
run: doccano init
|
|
- name: Test doccano createuser command
|
|
run: doccano createuser --username admin --password pass
|