Skip to content

Hausa "kada" clean up "no (?)" annotation #13

Hausa "kada" clean up "no (?)" annotation

Hausa "kada" clean up "no (?)" annotation #13

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install requirements
run: pip install -r requirements.txt
- name: Run build script
run: sh build.sh
- name: Commit CLDF files
run: |
if ! git diff --exit-code; then
git add *
git commit -m "GH Action CLDF build $(date)"
git push -f origin master
fi