cargo-semver-checks/.github/workflows/ci.yml

54 lines
1.3 KiB
YAML
Raw Normal View History

2022-12-31 12:05:36 +01:00
name: CI
on:
pull_request:
push:
branches:
- main
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
run-on-patch-change:
name: Test without semver violation
runs-on: ubuntu-latest
steps:
2022-12-31 12:20:57 +01:00
- name: Checkout test repo
2022-12-31 12:05:36 +01:00
uses: actions/checkout@v3
with:
2022-12-31 12:17:24 +01:00
repository: mgr0dzicki/cargo-semver-action-ref-slice
ref: patch_change
2022-12-31 12:05:36 +01:00
persist-credentials: true
2022-12-31 12:20:57 +01:00
- name: Checkout action
uses: actions/checkout@v3
with:
path: action
2022-12-31 12:05:36 +01:00
- name: Run action
2022-12-31 12:52:03 +01:00
id: action
2022-12-31 12:20:57 +01:00
uses: ./action/
2022-12-31 12:05:36 +01:00
run-on-major-change:
name: Test with semver violation
runs-on: ubuntu-latest
steps:
2022-12-31 12:20:57 +01:00
- name: Checkout test repo
2022-12-31 12:05:36 +01:00
uses: actions/checkout@v3
with:
2022-12-31 12:17:24 +01:00
repository: mgr0dzicki/cargo-semver-action-ref-slice
ref: major_change
2022-12-31 12:05:36 +01:00
persist-credentials: true
2022-12-31 12:20:57 +01:00
- name: Checkout action
uses: actions/checkout@v3
with:
path: action
2022-12-31 12:05:36 +01:00
- name: Run action
2022-12-31 12:52:03 +01:00
id: action
2022-12-31 12:20:57 +01:00
uses: ./action/
2022-12-31 12:05:36 +01:00
continue-on-error: true
2022-12-31 12:50:33 +01:00
- name: Debug print steps
run: echo '${{ toJSON(steps) }}'
2022-12-31 12:05:36 +01:00
- name: Check if the action failed
if: steps.action.outcome != 'failure'
2022-12-31 12:11:21 +01:00
run: exit 1