Skip to content

Commit

Permalink
adds workflow for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markcsims committed Oct 21, 2024
1 parent 5450223 commit 90e0ff1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/on-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: tests

on:
push:

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: test
run: |
./scripts/docker-run-all-tests.sh
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
.idea/
.idea/workspace.xml
.vim
.vscode

run-amqp.iml

netskope*
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,7 @@ Prerequisites:

Run all tests:

docker compose run test

Run specific test:

docker compose run test go test -run=TestRequeue_DLQ_Message_After_Retries
./scripts/docker-run-all-tests.sh

## Test Harness Application

Expand Down

0 comments on commit 90e0ff1

Please sign in to comment.