Added app-clients get, status in workflows update-execution, statistics in models get #60
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
name: Check that CLI version is updated | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
CheckVersion: | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Fetch repo | |
run: git fetch | |
- name: CLI Version check | |
run: | | |
if [ -z $(git diff origin/master HEAD -- lascli/__version__.py | grep version )] | |
then | |
echo "You should probably update version number" | |
exit 1 | |
fi |