From 4ae3e6867eba7ef169dace84a7abd0e3176ca66a Mon Sep 17 00:00:00 2001 From: poxtyn1 <60758261+poxtyn1@users.noreply.github.com> Date: Mon, 17 Feb 2020 20:09:56 +0700 Subject: [PATCH] Create 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..e54d08b --- /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@v2 + - 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.