gosling: added fuzz test for gosling identity client #66
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: pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build_and_deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Gosling | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libboost-all-dev tor | |
cargo install cargo-tarpaulin | |
sudo apt-get install -y doxygen pandoc plantuml tidy ruby-mustache graphviz | |
- name: Calculate Code Coverage | |
run: | | |
make coverage-release | |
- name: Build Pages | |
run: | | |
make pages-release | |
- name: Move Outputs | |
run: | | |
make install-release | |
- name: Deploy to Github Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: dist/release/pages |