mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2024-11-22 11:51:03 -05:00
b6bb4fa030
* Add Support for FileUpload
57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
name: Test
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
request:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
ref: ${{ github.ref }}
|
|
|
|
- name: Request Postment Echo GET
|
|
uses: ./
|
|
with:
|
|
url: 'https://postman-echo.com/get'
|
|
method: 'GET'
|
|
|
|
- name: Request Postment Echo POST
|
|
uses: ./
|
|
with:
|
|
url: 'https://postman-echo.com/post'
|
|
method: 'POST'
|
|
data: '{ "key": "value" }'
|
|
|
|
- name: Request Postment Echo POST with Unescaped Newline
|
|
uses: ./
|
|
with:
|
|
url: 'https://postman-echo.com/post'
|
|
method: 'POST'
|
|
escapeData: 'true'
|
|
data: >-
|
|
{
|
|
"key":"multi line\ntest
|
|
text"
|
|
}
|
|
|
|
- name: Request Postment Echo BasicAuth
|
|
uses: ./
|
|
with:
|
|
url: 'https://postman-echo.com/basic-auth'
|
|
method: 'GET'
|
|
username: 'postman'
|
|
password: 'password'
|
|
|
|
- name: Create Test File
|
|
id: image
|
|
run: |
|
|
echo "test" > testfile.txt
|
|
|
|
- name: Request Postment Echo POST Multipart
|
|
uses: ./
|
|
with:
|
|
url: 'https://postman-echo.com/post'
|
|
method: 'POST'
|
|
data: '{ "key": "value" }'
|
|
files: '{ "file": "${{ github.workspace }}/testfile.txt" }'
|