mirror of
https://github.com/obi1kenobi/cargo-semver-checks-action.git
synced 2024-11-22 16:09:33 +01:00
Add TODO comments
This commit is contained in:
parent
554ee23ce6
commit
1227c17749
1 changed files with 8 additions and 0 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
@ -27,12 +27,20 @@ jobs:
|
||||||
path: action
|
path: action
|
||||||
# Assumes that the latest published normal version of `ref_slice` smaller
|
# Assumes that the latest published normal version of `ref_slice` smaller
|
||||||
# than 1.2.2 is 1.2.1.
|
# than 1.2.2 is 1.2.1.
|
||||||
|
# TODO: Change the crate version in the corresponding branch `patch_change`
|
||||||
|
# to 1.2.1 once new logic of choosing baseline is adapted. Otherwise
|
||||||
|
# if new version 1.2.2 of `ref_slice` is released, the tests might stop
|
||||||
|
# working correctly.
|
||||||
- name: Checkout the test with patch change and patch version bump
|
- name: Checkout the test with patch change and patch version bump
|
||||||
run: git checkout patch_change
|
run: git checkout patch_change
|
||||||
- name: Run the action
|
- name: Run the action
|
||||||
uses: ./action/
|
uses: ./action/
|
||||||
# Assumes that the latest published normal version of `ref_slice` smaller
|
# Assumes that the latest published normal version of `ref_slice` smaller
|
||||||
# than 1.2.2 exports a public function `ref_slice`.
|
# than 1.2.2 exports a public function `ref_slice`.
|
||||||
|
# TODO: Change the crate version in the corresponding branch `major_change`
|
||||||
|
# to 1.2.1 once new logic of choosing baseline is adapted. Otherwise
|
||||||
|
# if new version 1.2.2 of `ref_slice` is released, the tests might stop
|
||||||
|
# working correctly.
|
||||||
- name: Checkout the test with major change and patch version bump
|
- name: Checkout the test with major change and patch version bump
|
||||||
run: git checkout major_change
|
run: git checkout major_change
|
||||||
- name: Run the action (allowed to fail)
|
- name: Run the action (allowed to fail)
|
||||||
|
|
Loading…
Reference in a new issue