diff --git "a/\360\237\220\215python-package.yml" "b/\360\237\220\215python-package.yml" deleted file mode 100644 index 7fe934c..0000000 --- "a/\360\237\220\215python-package.yml" +++ /dev/null @@ -1,20 +0,0 @@ -## Newest Version - -name: Python package - -on: [push] - -jobs: - build: - runs-on: macos-latest - strategy: - matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] - steps: - - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5.1.0 - with: - python-version: ${{ matrix.python-version }} - - name: Display Python version - run: python -c "import sys; print(sys.version)"