From afc53da0e0c5b223388b362af2dacaae361ad612 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Fri, 4 Oct 2019 10:55:52 -0700 Subject: [PATCH] Rename blank.yml to test2.yml --- .github/workflows/test2.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test2.yml diff --git a/.github/workflows/test2.yml b/.github/workflows/test2.yml new file mode 100644 index 00000000..33bcda7b --- /dev/null +++ b/.github/workflows/test2.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.