From 03d0c9e907427243ba40de64cd7302dcc9649384 Mon Sep 17 00:00:00 2001 From: Aaron Abbott Date: Fri, 16 Jul 2021 08:55:44 -0400 Subject: [PATCH] chore: add initial noop github action (#906) --- .github/workflows/ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 000000000..909e90b08 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,10 @@ +on: + push: + branches: [master] + pull_request: +name: ci +jobs: + test: + runs-on: ubuntu-latest + steps: + - run: echo "hello world"