tildefriends/.gitea/workflows/build.yaml
Cory McWilliams 5f5e6616c7
Some checks failed
Build Tilde Friends / Build-All (push) Failing after 6m1s
Install graphviz for building docs.
2024-08-14 21:16:31 -04:00

16 lines
385 B
YAML

name: Build Tilde Friends
run-name: ${{ gitea.actor }} running 🚀
on: [push]
jobs:
Build-All:
runs-on: ubuntu-latest
steps:
- name: check out code
uses: actions/checkout@v4
with:
submodules: true
- run: sudo apt update && sudo apt install -y doxygen graphviz mingw-w64
- run: make all -j`nproc` docs
- run: docker build .