mirror of
https://github.com/logos-storage/swarmsim.git
synced 2026-01-02 13:53:07 +00:00
18 lines
325 B
YAML
18 lines
325 B
YAML
name: tests
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
run-tests:
|
|
runs-on: ubuntu-latest
|
|
name: Ubuntu, Nim 2.0.0
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: iffy/install-nim@v3
|
|
with:
|
|
version: 2.0.0
|
|
- name: Install Deps
|
|
run: nimble install -y
|
|
- name: Run tests
|
|
run: nimble test -y
|