Skip to content

testing solutions for chap 5 #24

testing solutions for chap 5

testing solutions for chap 5 #24

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Clean Workspace
uses: AutoModality/action-clean@v1.1.0
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.20'
- name: Build project
run: make
- name: Publish the web pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./output/html
enable_jekyll: false
if: github.ref_name == 'master' && github.event_name == 'push'