ci: check version consistency between autotools and cmake #1
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: Check that the version numbers contained in configure.ac and CMakeLists.txt are consistent to each other | |
on: | |
push: | |
branches: | |
- frost | |
pull_request: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
functional-tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Check consistency between the version contained in configure.ac and CMakeLists.txt | |
run: scripts/check-version-consistency.sh |