From 7779fa6b8f121ff193c8c97c881253d6639249c4 Mon Sep 17 00:00:00 2001 From: ubu Date: Mon, 18 Nov 2019 19:17:57 +0300 Subject: [PATCH] Create blank.yml --- blank.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 blank.yml diff --git a/blank.yml b/blank.yml new file mode 100644 index 0000000000..b2340b2446 --- /dev/null +++ b/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.