We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eab5af4 commit 8573bd1Copy full SHA for 8573bd1
.github/workflows/ci.yml
@@ -0,0 +1,16 @@
1
+jobs:
2
+ build:
3
+ runs-on: ubuntu-latest
4
+ strategy:
5
+ matrix:
6
+ deno: ["v1.5.0", "nightly"]
7
+ name: Deno ${{ matrix.deno }}
8
+ steps:
9
+ - uses: actions/checkout@v2
10
+ - name: Setup Deno
11
+ uses: denolib/setup-deno@v2
12
+ with:
13
+ deno-version: ${{ matrix.deno }}
14
+ - run: |
15
+ deno --version
16
+ deno test --allow-read
0 commit comments