Skip to content

Commit

Permalink
chore: add pipeline tests (#61)
Browse files Browse the repository at this point in the history
* chore: add pipeline tests

* chore: remove travis-ci and
  • Loading branch information
ceelsoin authored Feb 21, 2024
1 parent 061939a commit 56116b8
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 25 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Run Tests

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
tests:
runs-on: ubuntu-latest
services:
redis:
image: redis:latest
ports:
- 6379:6379
options: --name redis-test
steps:
- name: Use Node.js 8.x
uses: actions/setup-node@v2
with:
node-version: '8.x'
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Setup
run: |
make setup
- name: Lint
run: |
make lint
- name: Unit & Integration Tests
env:
REDIS_ENDPOINT: "localhost:${{ job.services.redis.ports['6379'] }}"
run: |
REDIS_ENDPOINT=${REDIS_ENDPOINT} make test
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
[![Build Status](https://travis-ci.org/globocom/functions.png?branch=master)](https://travis-ci.org/globocom/functions)
[![Coverage Status](https://coveralls.io/repos/github/globocom/functions/badge.svg?branch=master)](https://coveralls.io/github/globocom/functions?branch=master)
![Tests](https://github.com/globocom/functions/actions/workflows/tests.yml/badge.svg)

# Backstage Functions
Backstage Functions is an Open Source [Serverless](http://martinfowler.com/articles/serverless.html) Platform able to store and execute code.
Expand Down

0 comments on commit 56116b8

Please sign in to comment.