Skip to content

Commit

Permalink
Upgrade to Github Actions and remove travis
Browse files Browse the repository at this point in the history
Remove travis and move to github actions

Signed-off-by: Alistair Hey <[email protected]>
  • Loading branch information
Waterdrips authored and alexellis committed Nov 6, 2020
1 parent 888f006 commit b322d28
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/only-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: ci-only

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: Make all
run: make all
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

all:
sh verify.sh
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# OpenFaaS Classic templates

[![Build Status](https://travis-ci.org/openfaas/templates.svg?branch=master)](https://travis-ci.org/openfaas/templates)
[![Build Status](https://github.com/openfaas/templates/workflows/build/badge.svg?branch=master)](https://github.com/openfaas/templates/actions)

To find out more about the OpenFaaS templates see the [faas-cli](https://github.com/openfaas/faas-cli).

Expand Down

0 comments on commit b322d28

Please sign in to comment.