Add tutorial for perun-embedded application #36
Workflow file for this run
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: pull_request | |
jobs: | |
setup-linkcheck-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Checkout sub modules | |
run: | | |
git submodule init && git submodule update | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo bash setup.sh --quiet-mode | |
- name: Build | |
run: | | |
make linkcheck | |
make html |