Skip to content

Commit

Permalink
(feat) add github CI
Browse files Browse the repository at this point in the history
  • Loading branch information
xTrayambak committed Mar 14, 2024
1 parent 5559b6e commit 15187c3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
on:
push:
pull_request:

jobs:
test:
strategy:
matrix:
os:
- windows-latest
- macos-latest
- ubuntu-latest
nimversion:
- devel
- stable

name: ${{ matrix.os }} - ${{ matrix.nimversion }}
runs-on: ${{ matrix.os }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: ${{ matrix.nimversion }}
- run: nimble productionBuild

0 comments on commit 15187c3

Please sign in to comment.