Skip to content

Commit

Permalink
workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
liz3 committed Dec 9, 2023
1 parent 4bd18d4 commit 79f1167
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build
on:
push: 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
runs: cmake --build build

- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: dist
path: |
build/ledit

0 comments on commit 79f1167

Please sign in to comment.