add testing workflow

This commit is contained in:
Daylin Morgan 2023-09-12 00:14:42 -05:00
parent 82486a89e6
commit fd43f537b1
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
1 changed files with 32 additions and 0 deletions

32
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: 🧪 Run Tests
on:
workflow_call:
workflow_dispatch:
push:
jobs:
build-artifact:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache nimble
id: cache-nimble
uses: actions/cache@v3
with:
path: ~/.nimble
key: "${{ runner.os }}-nimble-${{ hashFiles('*.nimble', '*.lock') }}"
restore-keys: |
${{ runner.os }}-nimble-
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: 2.0.0
- name: Run Tests
run: nimble test