Skip to content

initial commit

initial commit #37

Workflow file for this run

name: tests
on:
- push
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: denolib/setup-deno@v2
with:
deno-version: v1.x
- name: Run tests
run: >
deno task test-cov
- name: Upload coverage
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.github_token }}
path-to-lcov: ./cov.lcov