Skip to content

Commit d774f91

Browse files
author
Kohei Asai
authored
Enable Actions (axross#140)
1 parent 5cd96ba commit d774f91

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/on-push.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: on Push
2+
on:
3+
push:
4+
branches:
5+
- "*"
6+
jobs:
7+
test:
8+
name: Test
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@master
12+
- run: curl -fsSL https://deno.land/x/install/install.sh | sh
13+
- run: /home/runner/.deno/bin/deno test --allow-net

0 commit comments

Comments
 (0)