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.
This commit is contained in:
Paul Jolly
2020-04-01 04:11:32 +01:00
committed by GitHub
parent 859648d771
commit 652047fdc5

18
.github/workflows/test.yml vendored Normal file
View File

@@ -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!