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.
CppCoreGuidelines/.github/workflows/build.yml

21 lines
381 B
YAML

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 ..