Skip to content

Commit

Permalink
Merge pull request #3 from 3scale-labs/github-actions
Browse files Browse the repository at this point in the history
Add Github action that runs the tests
  • Loading branch information
davidor authored Jan 11, 2021
2 parents 8743cc6 + f7cb195 commit 19ce6fc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Limitador-Operator

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

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
- name: Run the tests
run: make test
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# The "source" command used in the "test" target does not work with /bin/sh.
SHELL := /bin/bash

# Current Operator version
VERSION ?= 0.0.1
# Default bundle image tag
Expand Down

0 comments on commit 19ce6fc

Please sign in to comment.