Skip to content

Commit

Permalink
fix: ci problem
Browse files Browse the repository at this point in the history
  • Loading branch information
wasd96040501 committed Jan 20, 2025
1 parent 8e40beb commit f41aecc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.7","3.8", "3.9", "3.10", "3.11", "3.12" ]
os: [ "ubuntu-latest" ]
os-label: [ "Ubuntu" ]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
os: ["ubuntu-22.04"]
os-label: ["Ubuntu"]
include:
- { python-version: "3.8", os: "windows-latest", os-label: "Windows" }
- { python-version: "3.8", os: "macos-latest", os-label: "macOS" }
Expand All @@ -29,7 +29,7 @@ jobs:
python-version: "${{ matrix.python-version }}"
- name: Install Dependencies
run: |
pip install poetry
pip install poetry
poetry install
- name: Build
run: |
Expand All @@ -52,7 +52,7 @@ jobs:
name: "Test success"
if: always()
runs-on: ubuntu-latest
needs: [ test ]
needs: [test]
steps:
- name: "Success"
if: needs.test.result == 'success'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/required-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
mode: minimum
count: 1
labels: |
feat
feature
enhancement
fix
Expand All @@ -22,4 +23,4 @@ jobs:
chore
documentation
add_comment: true
message: "Requires label: feature, enhancement, fix, bugfix, bug, chore, documentation."
message: "Requires label: feat, feature, enhancement, fix, bugfix, bug, chore, documentation."

0 comments on commit f41aecc

Please sign in to comment.