-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add check-semver workflow for patrol_finders
- Loading branch information
piotruela
committed
Oct 14, 2024
1 parent
a0e1ae3
commit 9a28059
Showing
2 changed files
with
48 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: patrol_finders check semver | ||
|
||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
paths: | ||
- 'packages/patrol_finders/**' | ||
|
||
jobs: | ||
check_semver: | ||
name: Check semver | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
flutter-version: ['3.24.x'] | ||
flutter-channel: ['stable'] | ||
|
||
steps: | ||
- name: Clone repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Get last released version | ||
id: get_last_released_version | ||
run: | | ||
last_version=$(git tag --list 'patrol_finders-v*' | grep -v '\-dev\.[0-9]\+$' | sort -V | tail -n 1 | sed 's/^patrol_finders-v//') | ||
echo "last_version=$last_version" >> $GITHUB_ENV | ||
echo "::set-output name=last_version::$last_version" | ||
- name: Set up Flutter | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
flutter-version: ${{ matrix.flutter-version }} | ||
channel: ${{ matrix.flutter-channel }} | ||
|
||
- name: Install dart-apitool | ||
run: dart pub global activate dart_apitool 0.19.0 | ||
|
||
- name: Check API changes | ||
run: | | ||
dart-apitool diff \ | ||
--old pub://patrol_finders/${{ steps.get_last_released_version.outputs.last_version }} \ | ||
--new packages/patrol_finders |