Bump threeal/cmake-action from 1.3.0 to 2.0.0 #367
Workflow file for this run
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 | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
- name: Configure and build this project | |
uses: threeal/[email protected] | |
with: | |
run-build: true | |
release-msvc: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
- name: Configure and build this project | |
uses: threeal/[email protected] | |
with: | |
run-build: true | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Install requirements | |
run: | | |
sudo apt-get install -y doxygen | |
pip3 install -r docs/requirements.txt | |
- name: Build documentation with Sphinx | |
run: sphinx-build -b html docs build/html -W --keep-going | |
- name: Upload documentation as artifact | |
uses: actions/[email protected] | |
with: | |
name: html | |
path: build/html |