Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/setup-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: panticmilos/setup-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Can’t automatically merge. Don’t worry, you can still create the pull request.
  • 5 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 5, 2022

  1. Update workflow.yml

    panticmilos authored Sep 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    755cf9d View commit details
  2. Update workflow.yml

    panticmilos authored Sep 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0c7e8e0 View commit details
  3. Update workflow.yml

    panticmilos authored Sep 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7f98662 View commit details
  4. Update workflow.yml

    panticmilos authored Sep 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fa32d90 View commit details
  5. Update workflow.yml

    panticmilos authored Sep 5, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    16170f1 View commit details
Showing with 7 additions and 15 deletions.
  1. +7 −15 .github/workflows/workflow.yml
22 changes: 7 additions & 15 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
@@ -8,13 +8,15 @@ on:
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:

jobs:
run:
name: Run
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
operating-system: [self-hosted, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -31,39 +33,29 @@ jobs:
- name: Lint
run: npm run format-check

- name: npm test
run: npm test

- name: Run with setup-python 2.7
uses: ./
with:
python-version: 2.7
- name: Verify 2.7
run: python __tests__/verify-python.py 2.7

- name: Run with setup-python 3.5
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.5
- name: Verify 3.5
run: python __tests__/verify-python.py 3.5

- name: Run with setup-python 3.6
uses: ./
uses: actions/setup-python@v4
with:
python-version: 3.6
- name: Verify 3.6
run: python __tests__/verify-python.py 3.6

- name: Run with setup-python 3.7
uses: ./
uses: actions/setup-python@main
with:
python-version: 3.7
- name: Verify 3.7
run: python __tests__/verify-python.py 3.7

- name: Run with setup-python 3.8
uses: ./
uses: actions/setup-python@main
with:
python-version: 3.8
- name: Verify 3.8