Skip to content

Add manual GitHub actions workflow dispatch #54

Add manual GitHub actions workflow dispatch

Add manual GitHub actions workflow dispatch #54

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: configure
run: |
mkdir build
cd build
cmake ..
- name: make
run: cd build && make
- name: test
run: cd build && make test