Add-latest-odf #2
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
name: Test Package Version Bump | |
on: | |
pull_request: | |
branches: | |
- main | |
- development | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Install git | |
run: | | |
apt-get install -y git | |
git --version | |
echo "Path is ... $PATH" | |
PATH=$PATH:$(which git) | |
echo "Path is ... $PATH" | |
- name: Get version difference | |
shell: bash | |
run: python .github/workflows/review_version_bump.py -b ${{ github.base_ref}} |