commit key #13
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: Automated API tests using Postman CLI | |
on: push | |
jobs: | |
automated-api-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Postman CLI | |
run: | | |
curl -o- "https://dl-cli.pstmn.io/install/linux64.sh" | sh | |
- name: Login to Postman CLI | |
run: postman login --with-api-key ${{ secrets.POSTMAN_API_KEY }} | |
- name: Run API tests | |
run: | | |
postman collection run "${{ github.workspace }}/postman/collections/petstore.json" --integration-id "166586-${{ github.run_id }}" | |
# Lint your API using Postman CLI | |
postman api lint 5605da7e-c743-4a8f-974d-8199ef1a61da --integration-id 166586 |