2021-04-02 16:40:44 -04:00
|
|
|
name: uses-docker-url
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2021-08-03 19:39:56 +02:00
|
|
|
- uses: actions/checkout@v2
|
2021-04-02 16:40:44 -04: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 15:50:43 +02: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 16:40:44 -04: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 15:50:43 +02: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
|