From 0f444a76b798dfafab5d042cb6fa402b31c34581 Mon Sep 17 00:00:00 2001 From: abdeladim-s Date: Tue, 2 May 2023 15:53:52 -0400 Subject: [PATCH] update workflows --- .github/workflows/pip.yml | 40 --------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/pip.yml diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml deleted file mode 100644 index 46f3e40..0000000 --- a/.github/workflows/pip.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Pip - -on: - workflow_dispatch: - pull_request: - push: - branches: - - main - -jobs: - build: - strategy: - fail-fast: false - matrix: - platform: [windows-latest, macos-latest, ubuntu-latest] - python-version: ["3.8", "3.11"] - - runs-on: ${{ matrix.platform }} - - steps: - - uses: actions/checkout@v3 - with: - submodules: true - - - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - - name: Add requirements - run: python -m pip install --upgrade wheel setuptools - - - name: Install requirements - run: python -m pip install -r requirements.txt - - - name: Build and install - run: pip install --verbose .[test] - -# - name: Test C-API -# run: python -m unittest ./tests/test_c_api.py -