From 993a2097b3e8a84041ffa1af1fbd53133e6a72af Mon Sep 17 00:00:00 2001 From: "Santiago M. Mola" Date: Fri, 16 Oct 2020 14:13:17 +0200 Subject: [PATCH] Enable GitHub Actions CI workflow (#2) --- .github/workflows/ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..5c4124f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,11 @@ +name: ci +on: + push: + branches: + - master + - staging + pull_requests: {} +jobs: + build: + steps: + - run: echo "hello world"