Thanks to visit codestin.com
Credit goes to github.com

Skip to content

systimer: fix style after PR review #451

systimer: fix style after PR review

systimer: fix style after PR review #451

Workflow file for this run

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