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 6c94102 commit 117cb2bCopy full SHA for 117cb2b
.github/workflows/ci.yaml
@@ -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
@@ -5,4 +5,6 @@ import {
} from "./bean_counting.ts";
import { assert } from "./testing.ts";
-Deno.test("Main", () => {});
+Deno.test("Main", () => {
+});
0 commit comments