v1.2.0 #38
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: Github Actions | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: jiro4989/setup-nim-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
# only test compiling for now since it requires the ollama service running | |
# TODO setup a test ollama instance | |
- run: | | |
nimble install -y | |
nim c examples/example.nim | |
nim c tests/test_llama_leap.nim | |