Skip to content

Commit

Permalink
Merge pull request #60 from rabbitmq/add-pr-unit-tests
Browse files Browse the repository at this point in the history
Add PR workflow to run unit tests via github actions.
  • Loading branch information
MirahImage committed Mar 15, 2021
2 parents 8e3a2b2 + 518225b commit 8101ef4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: PR

on:
pull_request:
branches: [ main ]

jobs:

unit_tests:
name: unit tests
runs-on: ubuntu-latest
container: us.gcr.io/cf-rabbitmq-for-k8s-bunny/rabbitmq-for-kubernetes-ci
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Unit tests
run: make unit-tests

0 comments on commit 8101ef4

Please sign in to comment.