Skip to content

Commit

Permalink
ci: create an initial GitHub actions workflow (play-with-docker#390)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
myitcv authored Apr 1, 2020
1 parent 859648d commit 652047f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -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!

0 comments on commit 652047f

Please sign in to comment.