2020-05-06 23:58:21 +00:00
|
|
|
name: Run tests
|
2020-05-07 00:19:26 +00:00
|
|
|
on: [push, pull_request]
|
2020-03-06 01:44:26 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Cache choosenim
|
|
|
|
id: cache-choosenim
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.choosenim
|
2020-05-06 23:58:21 +00:00
|
|
|
key: ${{ runner.os }}-choosenim-stable
|
2020-03-06 01:44:26 +00:00
|
|
|
|
|
|
|
- name: Cache nimble
|
|
|
|
id: cache-nimble
|
|
|
|
uses: actions/cache@v1
|
|
|
|
with:
|
|
|
|
path: ~/.nimble
|
2020-05-06 23:58:21 +00:00
|
|
|
key: ${{ runner.os }}-nimble-stable
|
2020-03-06 01:44:26 +00:00
|
|
|
|
2020-05-06 23:58:21 +00:00
|
|
|
- uses: jiro4989/setup-nim-action@v1.0.2
|
2020-03-06 01:44:26 +00:00
|
|
|
|
2020-05-06 23:58:21 +00:00
|
|
|
- run: nimble test -y
|