docs: Updated the official document links (#3) #3
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: [push, pull_request] | ||
jobs: | ||
ubuntu-build: | ||
runs-on: ubuntu-16.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
# isntall dependencies | ||
- name: install curl and openssl | ||
run: sudo apt-get update && sudo apt-get install -yq libcurl4-openssl-dev | ||
# build project | ||
- name: mkdir | ||
run: mkdir build | ||
- name: cmake build | ||
run: cmake -Bbuild -H. | ||
- name: cmake make | ||
run: cmake --build build/ --target all | ||