2021-04-02 15:40:44 -05:00
|
|
|
name: uses-docker-url
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-08-03 12:39:56 -05:00
|
|
|
- uses: actions/checkout@v2
|
2021-04-02 15:40:44 -05:00
|
|
|
- uses: ./uses-composite/composite_action
|
|
|
|
id: composite
|
|
|
|
with:
|
|
|
|
test_input_required: 'test_input_required_value'
|
|
|
|
test_input_optional: 'test_input_optional_value'
|
2021-07-21 08:50:43 -05:00
|
|
|
test_input_optional_with_default_overriden: 'test_input_optional_with_default_overriden'
|
|
|
|
test_input_required_with_default: 'test_input_optional_value'
|
|
|
|
test_input_required_with_default_overriden: 'test_input_required_with_default_overriden'
|
2021-04-02 15:40:44 -05:00
|
|
|
|
|
|
|
- if: steps.composite.outputs.test_output != "test_output_value"
|
|
|
|
run: |
|
|
|
|
echo "steps.composite.outputs.test_output=${{ steps.composite.outputs.test_output }}"
|
|
|
|
exit 1
|
|
|
|
|
2021-07-21 08:50:43 -05:00
|
|
|
# Now test again with default values
|
|
|
|
- uses: ./uses-composite/composite_action
|
|
|
|
id: composite2
|
|
|
|
with:
|
|
|
|
test_input_required: 'test_input_required_value'
|
|
|
|
test_input_optional_with_default_overriden: 'test_input_optional_with_default_overriden'
|
|
|
|
test_input_required_with_default_overriden: 'test_input_required_with_default_overriden'
|
|
|
|
|
|
|
|
- if: steps.composite2.outputs.test_output != "test_output_value"
|
|
|
|
run: |
|
|
|
|
echo "steps.composite.outputs.test_output=${{ steps.composite.outputs.test_output }}"
|
|
|
|
exit 1
|