Skip to content

Commit 117cb2b

Browse files
committed
👷 Add CI
1 parent 6c94102 commit 117cb2b

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
3+
on: push
4+
5+
jobs:
6+
ci:
7+
name: Lint and check format.
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
- uses: denoland/setup-deno@v1
12+
with:
13+
deno-version: v1.x
14+
- run: deno lint
15+
- run: deno fmt --check

bean_counting.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ import {
55
} from "./bean_counting.ts";
66
import { assert } from "./testing.ts";
77

8-
Deno.test("Main", () => {});
8+
Deno.test("Main", () => {
9+
10+
});

0 commit comments

Comments
 (0)