-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (32 loc) · 820 Bytes
/
docs.yml
File metadata and controls
42 lines (32 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 2021-2026, Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
name: Docs check
permissions: read-all
on:
push:
paths:
- "docs/**"
pull_request:
paths:
- "docs/**"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linux-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- 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