systimer: fix style after PR review #451
This file contains hidden or 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 uOFW | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: pspdev/pspdev:latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: | | |
| apk add build-base | |
| - name: Build project | |
| run: | | |
| make -k | |
| documentation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get install doxygen | |
| - name: Build documentation | |
| run: | | |
| mkdir github-pages | |
| cd github-pages | |
| doxygen ../docs/Doxyfile | |
| - name: Deploy documentation | |
| if: github.ref == 'refs/heads/master' | |
| uses: JamesIves/[email protected] | |
| with: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| BRANCH: gh-pages | |
| FOLDER: github-pages | |
| CLEAN: true |