This repository has been archived by the owner on Jan 29, 2024. It is now read-only.
Merge pull request #2159 from aiven/dorota-platform-byoc-remove-ipsec… #2078
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
name: "Build HTML" | |
"on": | |
push: | |
branches: | |
- main | |
tags: | |
- "**" | |
pull_request: | |
jobs: | |
run-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build | |
id: build_html | |
run: make html |