reparse individual non-parsed words after full sentence #35
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: apertium-recursive CI Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: dependencies | |
run: | | |
sudo apt-get -qy update | |
sudo apt-get -qfy install wget ca-certificates | |
wget -q https://apertium.projectjj.com/apt/install-nightly.sh -O - | sudo bash | |
sudo apt-get -qfy install --no-install-recommends build-essential automake autotools-dev pkg-config libxml2-dev lttoolbox-dev apertium-dev | |
- name: autoreconf | |
run: autoreconf -fvi | |
- name: configure | |
run: ./configure | |
- name: build | |
run: make -j4 V=1 VERBOSE=1 | |
- name: tests | |
run: make test | |
- name: make install | |
run: sudo make install |