[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/ffe4/setup-python/main/src/setup-python.ts [Back]  [Original]

import * as core from '@actions/core';
import * as finder from './find-python';
import * as path from 'path';
import * as os from 'os';

async function run() {
  try {
    let version = core.getInput('python-version');
    if (version) {
      const arch: string = core.getInput('architecture') || os.arch();
      const installed = await finder.findPythonVersion(version, arch);
      core.info(`Successfully setup ${installed.impl} (${installed.version})`);
    }
    const matchersPath = path.join(__dirname, '..', '.github');
    core.info(`##[add-matcher]${path.join(matchersPath, 'python.json')}`);
  } catch (err) {
    core.setFailed(err.message);
  }
}

run();

Web Proxy Viewer  |  New URL  |  Original Page