Docs: extract API reference to separate nav item #126
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: ci | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
if: github.ref == 'refs/heads/master' && github.repository_owner == 'ia-toki' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 50 | |
- name: Build CMake project | |
run: cmake . && cmake --build . | |
- name: Run unit tests | |
run: ./test_unit | |
- name: Run integration tests | |
run: ./test_integration | |
- name: Run ete tests | |
run: ./test_ete | |
- name: Upload code coverage report | |
run: bash <(curl -s https://codecov.io/bash) | |
deploy-web: | |
if: github.ref == 'refs/heads/master' && github.repository_owner == 'ia-toki' | |
runs-on: ubuntu-latest | |
env: | |
HOST: ${{ secrets.HOST }} | |
KNOWN_HOSTS: ${{ secrets.KNOWN_HOSTS }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 50 | |
- name: Set up node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: Build | |
run: | | |
cd web | |
yarn install | |
yarn build | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.PRIVATE_KEY }} | |
known_hosts: ${{ secrets.KNOWN_HOSTS }} | |
- name: Rsync | |
run: rsync -avzh web/build/ root@${HOST}:/var/www/html/tcframe --delete |