| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent efcf60f commit a0cb1ca
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,18 +2,23 @@ name: Python Fire | |||
| 2 | 2 | ||
| 3 | 3 | on: | |
| 4 | 4 | push: | |
| 5 | - branches: | ||
| 6 | - - master | ||
| 5 | + branches: ["master"] | ||
| 7 | 6 | pull_request: | |
| 8 | - branches: | ||
| 9 | - - master | ||
| 7 | + branches: ["master"] | ||
| 8 | + | ||
| 9 | + defaults: | ||
| 10 | + run: | ||
| 11 | + shell: bash | ||
| 10 | 12 | ||
| 11 | 13 | jobs: | |
| 12 | 14 | build: | |
| 13 | - runs-on: ubuntu-20.04 | ||
| 15 | + runs-on: ${{ matrix.os }} | ||
| 14 | 16 | strategy: | |
| 15 | 17 | matrix: | |
| 16 | - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"] | ||
| 18 | + os: ["macos-latest", "ubuntu-latest"] | ||
| 19 | + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"] | ||
| 20 | + include: | ||
| 21 | + - {os: "ubuntu-20.04", python-version: "3.7"} | ||
| 17 | 22 | ||
| 18 | 23 | steps: | |
| 19 | 24 | # Checkout the repo. | |
@@ -28,7 +33,6 @@ jobs: | |||
| 28 | 33 | ||
| 29 | 34 | # Build Python Fire using the build.sh script. | |
| 30 | 35 | - name: Run build script | |
| 31 | - shell: bash | ||
| 32 | 36 | run: ./.github/scripts/build.sh | |
| 33 | 37 | env: | |
| 34 | 38 | PYTHON_VERSION: ${{ matrix.python-version }} | |
| Back | FazBrowse Home | New Git URL |
0 commit comments