From 8337f67fee7f63a2b29ae7d56db815e83f975d4f Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 6 Dec 2024 10:28:11 +0000 Subject: [PATCH] Reverted ci to test everything --- .github/workflows/ci.yml | 154 +++++++++++++++++++-------------------- 1 file changed, 77 insertions(+), 77 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b395a2b4..d30024e7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,83 +28,83 @@ on: default: false jobs: - # build: - # if: github.event.pull_request.draft == false - - # runs-on: ${{ matrix.os }} - # strategy: - # matrix: - # os: [ ubuntu-latest ] - # python-version: ['3.9', '3.10', '3.11', '3.12'] - # include: # Run windows tests on only one python version - # - os: windows-latest - # python-version: '3.11' - - # steps: - # - name: Checkout code - # uses: actions/checkout@v4 - - # - name: Set up Python ${{ matrix.python-version }} - # uses: actions/setup-python@v5 - # with: - # python-version: ${{ matrix.python-version }} - - # - name: Install dependencies - # run: | - # python -m pip install --upgrade pip setuptools wheel - # python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt - # python -m pip install --upgrade --upgrade-strategy eager .[tensorflow,torch,shap] - # if [ "$RUNNER_OS" != "Windows" ]; then - # # Windows support for ray is experimental (https://docs.ray.io/en/latest/installation.html#windows-support) - # python -m pip install --upgrade --upgrade-strategy eager .[tensorflow,torch,shap,ray] # include other deps so that they are taking into account during ray install - # fi - # python -m spacy download en_core_web_md - # python -m pip freeze - - # - name: Setup tmate session - # uses: mxschmitt/action-tmate@v3 - # if: ${{ github.event_name == 'workflow_dispatch' && inputs.tmate_enabled }} - # with: - # limit-access-to-actor: true - - # - name: Test with pytest - # run: make test - - # - name: Upload coverage to Codecov - # uses: codecov/codecov-action@v4 - # with: - # directory: . - # env_vars: ${{matrix.os}}, ${{matrix.python-version}} - # fail_ci_if_error: false - # verbose: true - - # - name: Build Python package - # run: | - # make build_pypi - - # code-quality: - - # runs-on: ubuntu-latest - - # steps: - # - uses: actions/checkout@v4 - # - name: Set up Python 3.x - # uses: actions/setup-python@v5 - # with: - # python-version: '3.10' - # - name: Install dependencies - # run: | - # python -m pip install --upgrade pip - # python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt - # python -m pip install --upgrade --upgrade-strategy eager .[all] - - # - name: Lint with flake8 - # run: | - # flake8 alibi - - # - name: Typecheck with mypy - # run: | - # mypy alibi + build: + if: github.event.pull_request.draft == false + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ ubuntu-latest ] + python-version: ['3.9', '3.10', '3.11', '3.12'] + include: # Run windows tests on only one python version + - os: windows-latest + python-version: '3.11' + + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools wheel + python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt + python -m pip install --upgrade --upgrade-strategy eager .[tensorflow,torch,shap] + if [ "$RUNNER_OS" != "Windows" ]; then + # Windows support for ray is experimental (https://docs.ray.io/en/latest/installation.html#windows-support) + python -m pip install --upgrade --upgrade-strategy eager .[tensorflow,torch,shap,ray] # include other deps so that they are taking into account during ray install + fi + python -m spacy download en_core_web_md + python -m pip freeze + + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + if: ${{ github.event_name == 'workflow_dispatch' && inputs.tmate_enabled }} + with: + limit-access-to-actor: true + + - name: Test with pytest + run: make test + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v4 + with: + directory: . + env_vars: ${{matrix.os}}, ${{matrix.python-version}} + fail_ci_if_error: false + verbose: true + + - name: Build Python package + run: | + make build_pypi + + code-quality: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.x + uses: actions/setup-python@v5 + with: + python-version: '3.10' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + python -m pip install --upgrade --upgrade-strategy eager -r requirements/dev.txt + python -m pip install --upgrade --upgrade-strategy eager .[all] + + - name: Lint with flake8 + run: | + flake8 alibi + + - name: Typecheck with mypy + run: | + mypy alibi docs: