Skip to content

ci: add build workflow for GitHub Actions #1

ci: add build workflow for GitHub Actions

ci: add build workflow for GitHub Actions #1

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt update && sudo apt install mruby
- name: Configure CMake
run: cmake -S . -B build
- name: Build
run: cmake --build build