nim-leveldb/.github/workflows/main.yml

23 lines
445 B
YAML
Raw Permalink Normal View History

2024-05-09 09:01:21 +00:00
name: CI
2024-05-09 09:01:21 +00:00
on: [push, pull_request]
jobs:
2024-05-09 09:01:21 +00:00
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
nim: [stable, 1.6.18]
steps:
2024-05-09 09:01:21 +00:00
- uses: actions/checkout@v2
with:
submodules: true
2024-05-10 12:09:58 +00:00
- uses: iffy/install-nim@v4
2024-05-13 09:22:49 +00:00
with:
version: ${{ matrix.nim }}
2024-05-09 09:01:21 +00:00
- name: Build
run: nimble install -y
- name: Test
run: nimble test -y