From bc02e40bc2d14f3fc42d03381fc91add3c6d16d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20M=E1=BA=A1nh=20C=C6=B0=E1=BB=9Dng?= <33604446+CuongStf@users.noreply.github.com> Date: Thu, 29 Aug 2019 16:38:07 +0700 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/blank.yml diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml new file mode 100644 index 0000000..33bcda7 --- /dev/null +++ b/.github/workflows/blank.yml @@ -0,0 +1,17 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v1 + - name: Run a one-line script + run: echo Hello, world! + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.