docs: fix CLAUDE.md nimakai version to v0.13.1 #79
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Nim | |
| uses: jiro4989/setup-nim-action@v2 | |
| with: | |
| nim-version: '2.2.x' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install dependencies | |
| run: nimble install -y | |
| - name: Run tests | |
| run: nimble test | |
| - name: Build release binary | |
| run: nimble build | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Nim | |
| uses: jiro4989/setup-nim-action@v2 | |
| with: | |
| nim-version: '2.2.x' | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install dependencies | |
| run: nimble install -y | |
| - name: Build | |
| run: nim c -d:ssl -d:release --opt:size -o:nimakai src/nimakai.nim |