Skip to content

Commit 6e7d758

Browse files
Adding CI
1 parent 4d06d16 commit 6e7d758

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
strategy:
11+
matrix:
12+
config:
13+
- deno-version: 2.0.4
14+
15+
name: Deno ${{ matrix.config.deno-version }}
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
23+
- name: Deno
24+
uses: denolib/setup-deno@v2
25+
with:
26+
deno-version: ${{ matrix.config.deno-version }}
27+
28+
- name: Test
29+
run: deno task test

0 commit comments

Comments
 (0)