Skip to content

WIP: Upcoming new version of Plorth #14

WIP: Upcoming new version of Plorth

WIP: Upcoming new version of Plorth #14

Workflow file for this run

name: C/C++ CI
on: [push]
jobs:
build-ubuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: configure
run: pip install wheel && pip install cget && ~/.local/bin/cget install && mkdir build && cd build && cmake -DCMAKE_CXX_FLAGS="-Wall -Werror" ..
- name: build
run: cmake --build build
- name: test
run: cd build && ctest