Update versions-manifest (#251) #18
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: Validate 'versions-manifest.json' file | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- 'versions-manifest.json' | |
jobs: | |
setup-versions-from-manifest: | |
name: Setup ${{ matrix.python }} ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-22.04] | |
python: [3.9.12, 3.10.8, 3.11.10] | |
steps: | |
- name: setup-python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Validate version | |
run: | | |
$pythonVersion = (python --version) | |
if ("Python ${{ matrix.python }}" -ne "$pythonVersion"){ | |
Write-Host "The current version is $pythonVersion; expected version is ${{ matrix.python }}" | |
exit 1 | |
} | |
$pythonVersion | |
shell: pwsh | |
- name: Run simple code | |
run: python -c 'import math; print(math.factorial(5))' |