Skip to content

Commit

Permalink
backport to feature branch
Browse files Browse the repository at this point in the history
  • Loading branch information
alxy committed Jun 19, 2022
1 parent 50a3dfd commit 2d9c829
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run tests

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

jobs:
test:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run unit tests
run: make test

- name: Run acceptance tests
run: |
make docker-start
TESTARGS=-count=1 make testacc-local
make docker-stop
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL := /bin/bash

OPERATING_SYSTEM=Windows
OPERATING_SYSTEM=Linux
TEST?=$$(go list ./... | grep -v 'vendor')
HOSTNAME=betr.io
NAMESPACE=betr
Expand Down

0 comments on commit 2d9c829

Please sign in to comment.