From 7feec719907ed6bd0bebc7f8b64b287cb6eb8aa1 Mon Sep 17 00:00:00 2001 From: Sascha Mann Date: Mon, 4 Nov 2019 12:34:52 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..25c1952 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Test + +on: [commit_comment] + +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.