adding Smclint tests #192
Workflow file for this run
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 is a basic workflow to help you get started with Actions | |
name: test | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
check-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-ecosystem/action-get-latest-tag@v1 | |
id: get-latest-tag | |
- name: version check | |
run: | | |
export CHNGVER=$(grep -P -o '(?<=## \[).*(?=\])' -m1 CHANGELOG.md); | |
echo "CHANGELOG VERSION: $CHNGVER" | |
export TAGVER=${{ steps.get-latest-tag.outputs.tag }}; | |
echo "TAG VERSION: $TAGVER" | |
if [ "$CHNGVER" = "$TAGVER" ]; then | |
echo "No changelog update." | |
exit 1 | |
else | |
echo "Changelog updated." | |
fi |