Added doxygen and corrected coverage workflow #6
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: Build, Test, and Lint | |
on: | |
push: | |
branches: [ "refractor" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: nguy8tri/huskysat:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build all (Twice) | |
run: (make compile || make compile) | |
test: | |
runs-on: ubuntu-latest | |
container: nguy8tri/huskysat:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test (Twice) | |
run: (make test || make test) | |
lint: | |
runs-on: ubuntu-latest | |
container: nguy8tri/huskysat:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Stylecheck | |
run: make google_stylecheck | |
- name: Test Stylecheck | |
run: make google_stylecheck_test | |
- name: Line Endings | |
uses: erclu/check-crlf@v1 | |
coverage: | |
runs-on: ubuntu-latest | |
container: nguy8tri/huskysat:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Coverage | |
run: make coverage | |
- name: Install rsync | |
run: apt install -y rsync | |
- name: Upload Coverage Report | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
name: coverage-pages | |
folder: build/documentation/coverage | |
doxygen: | |
runs-on: ubuntu-latest | |
container: nguy8tri/huskysat:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Doxygen | |
run: make doxygen_generate | |
- name: Install rsync | |
run: apt install -y rsync | |
- name: Upload Doxygen Documentation | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
name: Doxygen Documentation | |
branch: documentation-pages | |
folder: build/documentation/doxygen |