From f6dd96a81cfd0785c67ef3333e6243fc769fb8dc Mon Sep 17 00:00:00 2001 From: laggykiller <61652821+laggykiller@users.noreply.github.com> Date: Sat, 24 Feb 2024 03:33:44 +0800 Subject: [PATCH] Fix workflow --- .github/workflows/pythonpackage.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index 6408c49..b7de366 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -21,34 +21,6 @@ jobs: sqlcipher/sqlite3.c sqlcipher/sqlite3.h - tests: - needs: [prepare-sqlite] - - strategy: - fail-fast: true - matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] - os: [ubuntu-20.04, macos-latest, windows-latest] - runs-on: ${{ matrix.os }} - - steps: - - uses: actions/checkout@v3 - with: - submodules: false - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - uses: actions/download-artifact@v3 - with: - name: sqlite-amalgamation - path: ./src/sqlcipher - - name: Build module - run: | - python setup.py build_ext -i - - name: Run tests - run: | - python -m test - build-wheels: needs: [prepare-sqlite, tests] runs-on: ${{ matrix.os }}