Skip to content

docs: Updated the official document links (#3) #3

docs: Updated the official document links (#3)

docs: Updated the official document links (#3) #3

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
ubuntu-build:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2

Check failure on line 9 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
# 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