Skip to content

Commit

Permalink
replace travis ci with gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Clivern committed Jan 10, 2021
1 parent 8fbffc7 commit 20481a3
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build

on: [push]


jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-18.04 ]
php: ['7.2', '7.3', '7.4']

name: PHP ${{ matrix.php }} sample
steps:
- uses: actions/checkout@master
- name: Setup PHP
uses: nanasess/setup-php@master
with:
php-version: ${{ matrix.php }}
- run: make ci
18 changes: 0 additions & 18 deletions .travis.yml

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ Monkey

Apache CloudStack SDK in PHP.

[![Build Status](https://travis-ci.org/Clivern/Monkey.svg?branch=master)](https://travis-ci.org/Clivern/Monkey)
[![Build Status](https://github.com/Clivern/Monkey/workflows/Build/badge.svg)](https://github.com/Clivern/Monkey/actions)
[![License](https://poser.pugx.org/clivern/monkey/license.svg)](https://packagist.org/packages/clivern/monkey)
[![Latest Stable Version](https://poser.pugx.org/clivern/monkey/v/stable.svg)](https://packagist.org/packages/clivern/monkey)


Installation
------------

Expand Down

0 comments on commit 20481a3

Please sign in to comment.