Skip to content

Bug 2310062: build: update golang x/net version #908

Bug 2310062: build: update golang x/net version

Bug 2310062: build: update golang x/net version #908

Workflow file for this run

name: docs-check
on:
push:
tags:
- v*
branches:
- master
- release-*
pull_request:
branches:
- master
- release-*
# cancel the in-progress workflow when PR is refreshed.
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
docs-check:
name: docs-check
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-go@v2
with:
go-version: 1.18
- uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install mkdocs and dependencies
run: cd build/release/ && make deps.docs
- name: Build documentation using mkdocs
run: make docs-build