Adds nexus version file #9
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: nexus version check | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Generate nexus git version | |
run: | | |
git submodule sync --recursive | |
git submodule update --init --recursive --jobs=4 | |
git submodule foreach --recursive 'git fetch --tags' | |
cd pynxtools/definitions | |
git describe --dirty --tags --long --match "*[0-9]*" | tr -d '\n' | tr -d ' ' > ../nexus-ref.txt | |
cd ../ | |
- name: Diff | |
run: | | |
diff pynxtools/nexus-version.txt pynxtools/nexus-ref.txt |