| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9c76e71 commit 0b93645
9 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,8 +21,8 @@ jobs: | |||
| 21 | 21 | strategy: | |
| 22 | 22 | fail-fast: false | |
| 23 | 23 | matrix: | |
| 24 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 25 | - python-version: ['3.9', 'pypy-3.9-v7.x'] | ||
| 24 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 25 | + python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||
| 26 | 26 | steps: | |
| 27 | 27 | - uses: actions/checkout@v4 | |
| 28 | 28 | - name: Setup Python | |
@@ -39,8 +39,8 @@ jobs: | |||
| 39 | 39 | strategy: | |
| 40 | 40 | fail-fast: false | |
| 41 | 41 | matrix: | |
| 42 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 43 | - python-version: ['3.9', 'pypy-3.9-v7.x'] | ||
| 42 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 43 | + python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||
| 44 | 44 | steps: | |
| 45 | 45 | - uses: actions/checkout@v4 | |
| 46 | 46 | - name: Setup Python | |
@@ -75,8 +75,8 @@ jobs: | |||
| 75 | 75 | strategy: | |
| 76 | 76 | fail-fast: false | |
| 77 | 77 | matrix: | |
| 78 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 79 | - python-version: ['3.9', 'pypy-3.9'] | ||
| 78 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 79 | + python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||
| 80 | 80 | steps: | |
| 81 | 81 | - uses: actions/checkout@v4 | |
| 82 | 82 | - name: Install poetry | |
@@ -97,8 +97,8 @@ jobs: | |||
| 97 | 97 | strategy: | |
| 98 | 98 | fail-fast: false | |
| 99 | 99 | matrix: | |
| 100 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 101 | - python-version: ['3.9', 'pypy-3.9-v7.x'] | ||
| 100 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 101 | + python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||
| 102 | 102 | steps: | |
| 103 | 103 | - uses: actions/checkout@v4 | |
| 104 | 104 | - name: Setup Python | |
@@ -116,8 +116,8 @@ jobs: | |||
| 116 | 116 | strategy: | |
| 117 | 117 | fail-fast: false | |
| 118 | 118 | matrix: | |
| 119 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 120 | - python-version: ['3.9', 'pypy-3.9-v7.x'] | ||
| 119 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 120 | + python-version: ['3.9', 'pypy-3.9-v7.x', '3.10', 'pypy-3.10-v7.x'] | ||
| 121 | 121 | steps: | |
| 122 | 122 | - uses: actions/checkout@v4 | |
| 123 | 123 | - name: Setup Python | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,29 +12,42 @@ on: | |||
| 12 | 12 | workflow_dispatch: | |
| 13 | 13 | ||
| 14 | 14 | jobs: | |
| 15 | - test-setup-python: | ||
| 16 | - name: Test setup-python | ||
| 15 | + test-setup-python-older: | ||
| 16 | + name: Test setup-python old versions | ||
| 17 | 17 | runs-on: ${{ matrix.operating-system }} | |
| 18 | 18 | strategy: | |
| 19 | 19 | matrix: | |
| 20 | - operating-system: [ubuntu-20.04, windows-latest] | ||
| 20 | + operating-system: | ||
| 21 | + [ubuntu-20.04, ubuntu-22.04, windows-latest, macos-latest, macos-13] | ||
| 22 | + python: [3.8.10, 3.8.18] | ||
| 23 | + exclude: | ||
| 24 | + - operating-system: ubuntu-22.04 | ||
| 25 | + python: '3.8.10' | ||
| 26 | + - operating-system: macos-latest | ||
| 27 | + python: '3.8.18' | ||
| 28 | + - operating-system: windows-latest | ||
| 29 | + python: '3.8.18' | ||
| 21 | 30 | steps: | |
| 22 | 31 | - name: Checkout | |
| 23 | 32 | uses: actions/checkout@v4 | |
| 24 | 33 | ||
| 25 | - - name: Run with setup-python 3.8 | ||
| 26 | - uses: ./ | ||
| 27 | - with: | ||
| 28 | - python-version: 3.8 | ||
| 29 | - - name: Verify 3.8 | ||
| 30 | - run: python __tests__/verify-python.py 3.8 | ||
| 31 | - | ||
| 32 | - - name: Run with setup-python 3.8.10 | ||
| 34 | + - name: Run with setup-python ${{ matrix.python }} | ||
| 35 | + id: setup-python | ||
| 33 | 36 | uses: ./ | |
| 34 | 37 | with: | |
| 35 | - python-version: 3.8.10 | ||
| 36 | - - name: Verify 3.8.10 | ||
| 37 | - run: python __tests__/verify-python.py 3.8.10 | ||
| 38 | + python-version: ${{ matrix.python }} | ||
| 39 | + - name: Verify ${{ matrix.python }} | ||
| 40 | + run: python __tests__/verify-python.py ${{ matrix.python }} | ||
| 41 | + test-setup-python: | ||
| 42 | + name: Test setup-python | ||
| 43 | + runs-on: ${{ matrix.operating-system }} | ||
| 44 | + strategy: | ||
| 45 | + matrix: | ||
| 46 | + operating-system: | ||
| 47 | + [ubuntu-20.04, windows-latest, ubuntu-22.04, macos-latest, macos-13] | ||
| 48 | + steps: | ||
| 49 | + - name: Checkout | ||
| 50 | + uses: actions/checkout@v4 | ||
| 38 | 51 | ||
| 39 | 52 | - name: Run with setup-python 3.9.13 | |
| 40 | 53 | uses: ./ | |
@@ -57,36 +70,43 @@ jobs: | |||
| 57 | 70 | - name: Verify 3.11.9 | |
| 58 | 71 | run: python __tests__/verify-python.py 3.11.9 | |
| 59 | 72 | ||
| 60 | - - name: Run with setup-python 3.12.4 | ||
| 73 | + - name: Run with setup-python 3.12.7 | ||
| 74 | + uses: ./ | ||
| 75 | + with: | ||
| 76 | + python-version: 3.12.7 | ||
| 77 | + - name: Verify 3.12.7 | ||
| 78 | + run: python __tests__/verify-python.py 3.12.7 | ||
| 79 | + | ||
| 80 | + - name: Run with setup-python 3.13.0 | ||
| 61 | 81 | uses: ./ | |
| 62 | 82 | with: | |
| 63 | - python-version: 3.12.4 | ||
| 64 | - - name: Verify 3.12.4 | ||
| 65 | - run: python __tests__/verify-python.py 3.12.4 | ||
| 83 | + python-version: 3.13.0 | ||
| 84 | + - name: Verify 3.13.0 | ||
| 85 | + run: python __tests__/verify-python.py 3.13.0 | ||
| 66 | 86 | ||
| 67 | - - name: Run with setup-python 3.10 | ||
| 68 | - id: cp310 | ||
| 87 | + - name: Run with setup-python 3.13 | ||
| 88 | + id: cp313 | ||
| 69 | 89 | uses: ./ | |
| 70 | 90 | with: | |
| 71 | - python-version: '3.10' | ||
| 72 | - - name: Verify 3.10 | ||
| 73 | - run: python __tests__/verify-python.py 3.10 | ||
| 74 | - - name: Run python-path sample 3.10 | ||
| 75 | - run: pipx run --python '${{ steps.cp310.outputs.python-path }}' nox --version | ||
| 91 | + python-version: '3.13' | ||
| 92 | + - name: Verify 3.13 | ||
| 93 | + run: python __tests__/verify-python.py 3.13 | ||
| 94 | + - name: Run python-path sample 3.13 | ||
| 95 | + run: pipx run --python '${{ steps.cp313.outputs.python-path }}' nox --version | ||
| 76 | 96 | ||
| 77 | - - name: Run with setup-python ==3.8 | ||
| 97 | + - name: Run with setup-python ==3.13 | ||
| 78 | 98 | uses: ./ | |
| 79 | 99 | with: | |
| 80 | - python-version: '==3.8' | ||
| 81 | - - name: Verify ==3.8 | ||
| 82 | - run: python __tests__/verify-python.py 3.8 | ||
| 100 | + python-version: '==3.13' | ||
| 101 | + - name: Verify ==3.13 | ||
| 102 | + run: python __tests__/verify-python.py 3.13 | ||
| 83 | 103 | ||
| 84 | - - name: Run with setup-python <3.11 | ||
| 104 | + - name: Run with setup-python <3.13 | ||
| 85 | 105 | uses: ./ | |
| 86 | 106 | with: | |
| 87 | - python-version: '<3.11' | ||
| 88 | - - name: Verify <3.11 | ||
| 89 | - run: python __tests__/verify-python.py 3.10 | ||
| 107 | + python-version: '<3.13' | ||
| 108 | + - name: Verify <3.13 | ||
| 109 | + run: python __tests__/verify-python.py 3.12 | ||
| 90 | 110 | - name: Test Raw Endpoint Access | |
| 91 | 111 | run: | | |
| 92 | 112 | curl -L https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json | jq empty | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,7 +22,7 @@ jobs: | |||
| 22 | 22 | runs-on: ubuntu-latest | |
| 23 | 23 | steps: | |
| 24 | 24 | - name: Update the ${{ env.TAG_NAME }} tag | |
| 25 | - uses: actions/publish-action@v0.2.2 | ||
| 25 | + uses: actions/publish-action@v0.3.0 | ||
| 26 | 26 | with: | |
| 27 | 27 | source-tag: ${{ env.TAG_NAME }} | |
| 28 | 28 | slack-webhook: ${{ secrets.SLACK_WEBHOOK }} | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,10 +18,12 @@ jobs: | |||
| 18 | 18 | strategy: | |
| 19 | 19 | fail-fast: false | |
| 20 | 20 | matrix: | |
| 21 | - os: [macos-latest, ubuntu-20.04, ubuntu-latest] | ||
| 21 | + os: [macos-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||
| 22 | 22 | graalpy: | |
| 23 | - - 'graalpy-23.0' | ||
| 24 | 23 | - 'graalpy-22.3' | |
| 24 | + - 'graalpy-23.0' | ||
| 25 | + - 'graalpy-23.1' | ||
| 26 | + - 'graalpy-24.1' | ||
| 25 | 27 | ||
| 26 | 28 | steps: | |
| 27 | 29 | - name: Checkout | |
@@ -63,8 +65,8 @@ jobs: | |||
| 63 | 65 | strategy: | |
| 64 | 66 | fail-fast: false | |
| 65 | 67 | matrix: | |
| 66 | - os: [macos-latest, ubuntu-20.04, ubuntu-latest] | ||
| 67 | - graalpy: ['graalpy23.0', 'graalpy22.3'] | ||
| 68 | + os: [macos-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||
| 69 | + graalpy: ['graalpy22.3', 'graalpy23.0', 'graalpy23.1', 'graalpy24.1'] | ||
| 68 | 70 | ||
| 69 | 71 | steps: | |
| 70 | 72 | - name: Checkout | |
@@ -88,14 +90,14 @@ jobs: | |||
| 88 | 90 | strategy: | |
| 89 | 91 | fail-fast: false | |
| 90 | 92 | matrix: | |
| 91 | - os: [ubuntu-latest, macos-latest] | ||
| 93 | + os: [ubuntu-latest, macos-latest, macos-13] | ||
| 92 | 94 | steps: | |
| 93 | 95 | - uses: actions/checkout@v4 | |
| 94 | 96 | - name: Setup GraalPy and check latest | |
| 95 | 97 | uses: ./ | |
| 96 | 98 | id: graalpy | |
| 97 | 99 | with: | |
| 98 | - python-version: 'graalpy-23.x' | ||
| 100 | + python-version: 'graalpy-24.x' | ||
| 99 | 101 | check-latest: true | |
| 100 | 102 | - name: GraalPy and Python version | |
| 101 | 103 | run: python --version | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,19 +20,20 @@ jobs: | |||
| 20 | 20 | strategy: | |
| 21 | 21 | fail-fast: false | |
| 22 | 22 | matrix: | |
| 23 | - os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest] | ||
| 23 | + os: | ||
| 24 | + [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||
| 24 | 25 | pypy: | |
| 25 | 26 | - 'pypy-2.7' | |
| 26 | 27 | - 'pypy-3.10' | |
| 27 | 28 | - 'pypy3.9' | |
| 28 | - - 'pypy-2.7-v7.3.14' | ||
| 29 | - - 'pypy-3.10-v7.3.15' | ||
| 30 | - - 'pypy-3.10-v7.3.14' | ||
| 29 | + - 'pypy-2.7-v7.3.17' | ||
| 30 | + - 'pypy-3.10-v7.3.17' | ||
| 31 | + - 'pypy-3.10-v7.3.16' | ||
| 31 | 32 | - 'pypy-3.10-v7.3.x' | |
| 32 | 33 | - 'pypy-3.10-v7.x' | |
| 33 | 34 | - 'pypy-2.7-v7.3.12rc1' | |
| 34 | 35 | - 'pypy-3.10-nightly' | |
| 35 | - - 'pypy3.10-v7.3.15' | ||
| 36 | + - 'pypy3.10-v7.3.17' | ||
| 36 | 37 | ||
| 37 | 38 | steps: | |
| 38 | 39 | - name: Checkout | |
@@ -74,7 +75,8 @@ jobs: | |||
| 74 | 75 | strategy: | |
| 75 | 76 | fail-fast: false | |
| 76 | 77 | matrix: | |
| 77 | - os: [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest] | ||
| 78 | + os: | ||
| 79 | + [macos-latest, windows-latest, ubuntu-20.04, ubuntu-latest, macos-13] | ||
| 78 | 80 | pypy: ['pypy2.7', 'pypy3.9', 'pypy3.10-nightly'] | |
| 79 | 81 | ||
| 80 | 82 | steps: | |
@@ -99,7 +101,7 @@ jobs: | |||
| 99 | 101 | strategy: | |
| 100 | 102 | fail-fast: false | |
| 101 | 103 | matrix: | |
| 102 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 104 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 103 | 105 | steps: | |
| 104 | 106 | - uses: actions/checkout@v4 | |
| 105 | 107 | - name: Setup PyPy and check latest | |
@@ -132,7 +134,7 @@ jobs: | |||
| 132 | 134 | strategy: | |
| 133 | 135 | fail-fast: false | |
| 134 | 136 | matrix: | |
| 135 | - os: [ubuntu-latest, windows-latest, macos-latest] | ||
| 137 | + os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | ||
| 136 | 138 | steps: | |
| 137 | 139 | - uses: actions/checkout@v4 | |
| 138 | 140 | - name: Setup PyPy and check latest | |
| Back | FazBrowse Home | New Git URL |
0 commit comments