From e6d1c714c77f54342ba3a75ea4ab7e04c2f46890 Mon Sep 17 00:00:00 2001 From: HTMichL Date: Mon, 21 Mar 2022 15:40:31 -0500 Subject: [PATCH] Create new file --- github-actions-demo.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 github-actions-demo.yml diff --git a/github-actions-demo.yml b/github-actions-demo.yml new file mode 100644 index 0000000..a1f5449 --- /dev/null +++ b/github-actions-demo.yml @@ -0,0 +1,16 @@ +# This is a basic workflow to help you get started with Actions + +name: "Newman Tests" +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + container: + image: postman/newman + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Run API Tests + run: newman run "Restful Booker BVT.postman_collection.json" -e Production.postman_environment.json