diff --git a/.github/workflows/conan-ci.yml b/.github/workflows/conan-ci.yml index b3ed35d4..af0f1ead 100644 --- a/.github/workflows/conan-ci.yml +++ b/.github/workflows/conan-ci.yml @@ -41,6 +41,9 @@ jobs: name: ${{ matrix.compiler.name }} ${{ matrix.compiler.version }} steps: - uses: actions/checkout@v2 + - name: Install Ninja + run: | + sudo apt install ninja-build - name: Set up Python uses: actions/setup-python@v2 with: diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 6121dc7a..8b524018 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -20,6 +20,8 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. +name: Documentation + on: [push, pull_request] # on: # push: @@ -53,6 +55,9 @@ jobs: uses: actions/setup-python@v2 with: python-version: '3.8' + - name: Install Ninja + run: | + sudo apt install ninja-build - name: Install Python dependencies run: | pip install -Ur docs/requirements.txt