From a843ef8239c1d9a3f9b84376522a690d60b10ba2 Mon Sep 17 00:00:00 2001 From: axetroy Date: Fri, 16 Aug 2019 14:04:58 +0800 Subject: [PATCH] docs: update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 1c43279..d617b0d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,21 @@ # A action for Github to run Deno command line. +## Usage + +create `.github/main.workflow` in you project + +```workflow +workflow "Test" { + on = "push" + resolves = ["Run test"] +} + +action "Run test" { + uses = "axetroy/deno-action@0.0.1" + args = "run test.ts" +} +``` + ## License