We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77bf59d commit 5c841bbCopy full SHA for 5c841bb
.circleci/config.yml
@@ -0,0 +1,26 @@
1
+version: 2.1
2
+
3
+workflows:
4
+ main:
5
+ jobs:
6
+ - scanapi:
7
+ filters:
8
+ branches:
9
+ only:
10
+ - website-tutorial-ci
11
12
+jobs:
13
+ scanapi:
14
+ docker:
15
+ - image: camilamaia/scanapi:2.4.0
16
+ environment:
17
+ USER: $USER
18
+ PASSWORD: $PASSWORD
19
+ steps:
20
+ - checkout
21
+ - run:
22
+ name: Run ScanAPI
23
+ command: |
24
+ scanapi run scanapi/scanapi.yaml -c scanapi/scanapi.conf -o scanapi/report.html
25
+ - store_artifacts:
26
+ path: scanapi/report.html
0 commit comments