From 652047fdc5826a3005c9695c20a86c5536113647 Mon Sep 17 00:00:00 2001 From: Paul Jolly Date: Wed, 1 Apr 2020 04:11:32 +0100 Subject: [PATCH] ci: create an initial GitHub actions workflow (#390) This workflow does nothing, but we need an initial workflow in place in order to be able to iterate and test with changes to that workflow in later PRs. Hence we commit a simple "Hello, World!" workflow for now that will be refined in later PRs. --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..8a21b3c --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + branches: + - '**' + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@722adc63f1aa60a57ec37892e133b1d319cae598 + - name: Run a one-line script + run: echo Hello, world!