Skip to content

Add possibility to define access_token and expiration timestamp in env and credentials file #365

Add possibility to define access_token and expiration timestamp in env and credentials file

Add possibility to define access_token and expiration timestamp in env and credentials file #365

Workflow file for this run

name: Check that 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: Version check
run: |
if [ -z $(git diff origin/master HEAD -- pyproject.toml | grep version )]
then
echo "You should probably update version number"
exit 1
fi