From 9333df5999f2b793d5726e6b59a3a4b7a8875462 Mon Sep 17 00:00:00 2001 From: mont1985 <57890926+mont1985@users.noreply.github.com> Date: Sun, 9 Feb 2020 21:03:38 -0500 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.