Skip to content

Fixed nfa_to_dfa issues found by sonarcloud #61

Fixed nfa_to_dfa issues found by sonarcloud

Fixed nfa_to_dfa issues found by sonarcloud #61

Workflow file for this run

name: Pages by Doxygen
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
publish-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install Doxygen
run: |
sudo apt update
sudo apt install doxygen graphviz
- name: Autoreconf
run: autoreconf -i
- name: Configure
run: ./configure
- name: Make
run: make doxygen-run
- name: Upload pages artifact
if: github.event_name == 'push'
uses: actions/upload-pages-artifact@v1
with:
path: ./doxygen/html
- name: Deploy to GitHub Pages
if: github.event_name == 'push'
id: deployment
uses: actions/deploy-pages@v2