mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2026-02-04 08:35:53 +08:00
Merge pull request #73 from fjogeleit/url-encoded-tests
Test cases for URLEncoded contentType
This commit is contained in:
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
@@ -145,3 +145,19 @@ jobs:
|
|||||||
url: 'https://postman-echo.com/post'
|
url: 'https://postman-echo.com/post'
|
||||||
method: 'POST'
|
method: 'POST'
|
||||||
file: "${{ github.workspace }}/testfile.txt"
|
file: "${{ github.workspace }}/testfile.txt"
|
||||||
|
|
||||||
|
- name: Request Postman Echo POST URLEncoded string data
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
url: 'https://postman-echo.com/post'
|
||||||
|
contentType : 'application/x-www-form-urlencoded'
|
||||||
|
method: 'POST'
|
||||||
|
data: 'key=value'
|
||||||
|
|
||||||
|
- name: Request Postman Echo POST URLEncoded json data
|
||||||
|
uses: ./
|
||||||
|
with:
|
||||||
|
url: 'https://postman-echo.com/post'
|
||||||
|
contentType : 'application/x-www-form-urlencoded'
|
||||||
|
method: 'POST'
|
||||||
|
data: '{"key":"value"}'
|
||||||
|
|||||||
Reference in New Issue
Block a user