mirror of
https://github.com/logos-storage/nim-libplum.git
synced 2026-06-07 17:49:25 +00:00
30 lines
518 B
YAML
30 lines
518 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Install Nim
|
|
uses: jiro4989/setup-nim-action@v2
|
|
with:
|
|
nim-version: "2.2.x"
|
|
|
|
- name: Install dependencies
|
|
run: nimble setup -y
|
|
|
|
- name: Unit tests
|
|
run: nimble test
|
|
|
|
- name: Integration tests
|
|
run: nimble testIntegration
|