mirror of
https://github.com/fjogeleit/http-request-action.git
synced 2024-12-23 12:46:14 +00:00
18 lines
299 B
YAML
18 lines
299 B
YAML
|
name: Test
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
request:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
with:
|
||
|
ref: ${{ github.ref }}
|
||
|
|
||
|
- name: Request Google Test
|
||
|
uses: ./
|
||
|
with:
|
||
|
url: 'https://google.de'
|
||
|
method: 'GET'
|