Skip to content

next

next #5

Workflow file for this run

name: Build
on:
push:
branches:
- vim
jobs:
build-project:
name: Build Project
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
submodules: true
- name: Configure Project
uses: threeal/cmake-action@v1.3.0
with:
options: |
MAKE_BUILD_TYPE=Release
- name: Build Project
run: cmake --build build
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: |
build/ledit