Merge pull request #21 from AshtakaOOf/60fps #81
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
# This workflow will build a Nimble project | |
name: Build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# ⚠️ This setups the latest stable Nim version | |
- name: Install Nim | |
uses: iffy/install-nim@v5 | |
- name: Install dependencies | |
run: nimble install -y | |
- name: Build | |
run: nimble build --define:release --out:lucem | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Build | |
path: lucem |