You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
name: build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
|
|
- name: Install Hunspell
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install hunspell
|
|
|
|
- name: Run cd scripts; make -k
|
|
run: cd scripts; make -k
|
|
|
|
- name: Run cd ..
|
|
run: cd ..
|