Function template specialization #520
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
# Copyright 2021-2023, Intel Corporation | |
# SPDX-License-Identifier: BSD-3-Clause | |
name: Docs check | |
on: | |
push: | |
paths: | |
- "docs/**" | |
pull_request: | |
paths: | |
- "docs/**" | |
workflow_dispatch: | |
jobs: | |
linux-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check environment | |
run: | | |
cat /proc/cpuinfo | |
- name: Install dependencies | |
run: | | |
echo "APT::Acquire::Retries \"3\";" | sudo tee -a /etc/apt/apt.conf.d/80-retries | |
sudo apt-get update | |
sudo apt-get install python3-docutils | |
- name: Check docs build | |
run: | | |
cd docs | |
./build.sh | |