(versionSpec: string)
| 16 | import {exec} from '@actions/exec'; |
| 17 | |
| 18 | function isPyPyVersion(versionSpec: string) { |
| 19 | return versionSpec.startsWith('pypy'); |
| 20 | } |
| 21 | |
| 22 | function isGraalPyVersion(versionSpec: string) { |
| 23 | return versionSpec.startsWith('graalpy'); |