Fix of WebSocket close status frame #67
Workflow file for this run
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: Doxygen | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Setup git" | |
run: | | |
git config --global user.name "${{ github.actor }}" | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
- uses: actions/checkout@v4 | |
- name: "Setup cmake" | |
run: cmake --version | |
- name: "Setup doxygen" | |
run: | | |
sudo apt-get -y install doxygen graphviz binutils-dev | |
doxygen --version | |
dot -V | |
- name: "Setup gil" | |
run: | | |
pip3 install gil | |
gil update | |
- name: "Doxygen" | |
env: | |
GITHUB_ACTOR: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
cd build/Unix | |
./01-generate.sh | |
./05-doxygen.sh |