Skip to content

Commit

Permalink
Add github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Aug 8, 2020
1 parent e7da588 commit 92dd7b0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: test
on: [push, pull_request]

jobs:
build:
name: test
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@master
- name: Setup deno
uses: denolib/setup-deno@master
with:
deno-version: 1.2.0
- name: Run tests
run: deno test --allow-read --allow-write

0 comments on commit 92dd7b0

Please sign in to comment.