cargo-semver-checks/.github/workflows/test-action.yml

47 lines
1.3 KiB
YAML
Raw Normal View History

2023-02-25 14:16:59 +01:00
name: Smoke test the action
# Assumes that the latest published normal version of `ref_slice` not greater
# than 1.2.1 is 1.2.1 itself.
2023-01-09 00:46:08 +01:00
on:
workflow_call:
inputs:
runs-on:
required: true
type: string
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
run-tests:
name: Run tests
runs-on: ${{ inputs.runs-on }}
steps:
2023-02-27 20:35:32 +01:00
- name: Checkout the test repository and test with patch change and patch version bump
2023-01-09 00:46:08 +01:00
uses: actions/checkout@v3
with:
repository: mgr0dzicki/cargo-semver-action-ref-slice
2023-02-27 20:35:32 +01:00
ref: patch_change
2023-01-09 00:46:08 +01:00
persist-credentials: true
- name: Checkout the action
uses: actions/checkout@v3
with:
path: action
- name: Run the action
uses: ./action/
- name: Checkout the test with major change and patch version bump
2023-02-27 20:35:32 +01:00
run: |
git fetch origin major_change
git checkout major_change
2023-01-09 00:46:08 +01:00
- name: Run the action (allowed to fail)
id: action_major
uses: ./action/
continue-on-error: true
- name: Fail if the action has not returned any errors (but it should have)
if: steps.action_major.outcome != 'failure'
run: |
echo "Error! The action should have failed because of the breaking change, but it has not."
exit 1