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