Skip to content

Commit

Permalink
Added GitHub Actions workflow for CI (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ted McDonald authored Mar 17, 2020
1 parent 1f1cce0 commit 6db5a94
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 18 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@

name: Build

on:
push:
branches:
- master
pull_request:
schedule:
- cron: '0 0 * * *'

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: recursive

- name: Install environment
run: |
docker pull opendxl/opendxl-environment
docker run -d -p 127.0.0.1:8000:8000 opendxl/opendxl-environment
docker ps -a
- name: Execute CI
run: |
wget http://localhost:8000
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/opendxl/opendxl-environment.png?branch=master)](https://travis-ci.org/opendxl/opendxl-environment)
[![Actions Status](https://github.com/opendxl/opendxl-environment/workflows/Build/badge.svg)](https://github.com/opendxl/opendxl-environment/actions)
[![Docker Build Status](https://img.shields.io/docker/build/opendxl/opendxl-environment.svg)](https://hub.docker.com/r/opendxl/opendxl-environment/)

# OpenDXL Environment
Expand Down

0 comments on commit 6db5a94

Please sign in to comment.