Create gitnub-action-demo.yml #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |