docu #84
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
    
  
  
    
  | name: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: dependencies | |
| run: | | |
| wget http://apertium.projectjj.com/apt/install-nightly.sh -O - | sudo bash | |
| sudo apt-get install hfst python3-hfst libhfst-dev cg3 | |
| - name: autogen | |
| run: ./autogen.sh | |
| - name: configure | |
| run: ./configure --enable-segmenter --enable-labeled-segments --enable-lemmatiser --enable-hyphenator --enable-ftb3 --with-java | |
| - name: make | |
| run: make | |
| - name: test | |
| run: make check | |
| - name: install | |
| run: sudo make install |