fix #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- vim | |
jobs: | |
build-project: | |
name: Build Project | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
submodules: true | |
- name: install deps | |
run: | | |
brew install llvm cmake | |
- name: Build Project | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=Release .. | |
make | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ledit_darwin_x86_x64 | |
path: | | |
build/ledit |