Add parsing docs
This commit is contained in:
parent
77d4c11054
commit
841eee3990
|
@ -1,28 +1,10 @@
|
||||||
---
|
---
|
||||||
name: On Master Push
|
name: Deploy Docs
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branch:
|
branches:
|
||||||
- master
|
- master
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
submodules: recursive
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y libbsd-dev cmake build-essential
|
|
||||||
- name: Build and test
|
|
||||||
run: |
|
|
||||||
mkdir build
|
|
||||||
cd build
|
|
||||||
cmake ..
|
|
||||||
make
|
|
||||||
./tests
|
|
||||||
docs:
|
docs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
timeout-minutes: 5
|
timeout-minutes: 5
|
|
@ -0,0 +1,25 @@
|
||||||
|
---
|
||||||
|
name: Test
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: recursive
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y libbsd-dev cmake build-essential
|
||||||
|
- name: Build and test
|
||||||
|
run: |
|
||||||
|
mkdir build
|
||||||
|
cd build
|
||||||
|
cmake ..
|
||||||
|
make
|
||||||
|
./tests
|
|
@ -12,6 +12,7 @@ nav:
|
||||||
- 'Linked List': 'linkedlist.md'
|
- 'Linked List': 'linkedlist.md'
|
||||||
- 'Math': 'math.md'
|
- 'Math': 'math.md'
|
||||||
- 'macOS': 'macos.md'
|
- 'macOS': 'macos.md'
|
||||||
|
- 'Parsing': 'parsing.md'
|
||||||
- 'Set': 'set.md'
|
- 'Set': 'set.md'
|
||||||
- 'Stack': 'stack.md'
|
- 'Stack': 'stack.md'
|
||||||
- 'String': 'string.md'
|
- 'String': 'string.md'
|
||||||
|
|
Loading…
Reference in New Issue