cargo-semver-checks/.github/workflows/ci.yml
2023-01-03 09:45:54 -05:00

47 lines
1.2 KiB
YAML

name: CI
on:
pull_request:
push:
branches:
- main
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
test-action:
name: Test the action
runs-on: ubuntu-latest
steps:
- name: Checkout test repository
uses: actions/checkout@v3
with:
repository: mgr0dzicki/cargo-semver-action-ref-slice
fetch-depth: 0
persist-credentials: true
- name: Checkout action
uses: actions/checkout@v3
with:
path: action
# test without semver violation
- name: Checkout branch patch_change
run: git checkout patch_change
- name: Run action
uses: ./action/
# test with semver violation
- name: Checkout branch major_change
run: git checkout major_change
- name: Run action
id: action_major
uses: ./action/
continue-on-error: true
- name: Check action outcome
run: |
if [[ "${{ steps.action_major.outcome }}" != 'failure' ]]; then
echo "Error! The action should have failed because of the breaking change, but it has not."
exit 1
else
echo "OK! The action has failed as expected on the breaking change."
fi