Hausa "kada" clean up "no (?)" annotation #13
This file contains 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
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 |