From 2069df06b92112cc13be32ea3ba1dbd7ef4aebfc Mon Sep 17 00:00:00 2001 From: Alexey Bader Date: Sat, 22 Feb 2020 18:11:47 +0300 Subject: [PATCH] [CI] Create mail.yml with test action --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 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 0000000000000..98157f5819459 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,19 @@ +name: CI + +on: + pull_request: + branches: + - sycl + types: [open, edit, reopen, synchronize] + +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.