mirror of
https://github.com/logos-storage/questionable.git
synced 2026-01-03 14:23:07 +00:00
Continuous integration with Github actions
This commit is contained in:
parent
81ed9b652c
commit
dfe4e3cc4b
19
.github/workflows/ci.yml
vendored
Normal file
19
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: CI
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
nim: [stable, 1.2.6]
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: iffy/install-nim@v3
|
||||||
|
with:
|
||||||
|
version: ${{ matrix.nim }}
|
||||||
|
- name: Build
|
||||||
|
run: nimble install -y
|
||||||
|
- name: Test
|
||||||
|
run: nimble test -y
|
||||||
Loading…
x
Reference in New Issue
Block a user