Skip to content

Update the continuous integration #743

Update the continuous integration

Update the continuous integration #743

name: CI
on:
push:
paths-ignore:
- 'CHANGELOG.md'
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: '0 11 * * 4'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- uses: pre-commit/action@v3.0.0
codeql:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: python
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
pytest:
strategy:
fail-fast: true
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
pandas-version: [latest]
include:
- python-version: 3.6
pandas-version: 0.22
- python-version: 3.9
pandas-version: 1.5
- python-version: "3.11"
pandas-version: pre
polars: true
- python-version: "3.11"
shiny: true
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov
- name: Install a development version of 'itables'
run: pip install -e .
- name: Install pandas latest
if: matrix.pandas-version == 'latest'
run: pip install pandas
- name: Install pandas pre-release
if: matrix.pandas-version == 'pre'
run: pip install pandas --pre
- name: Install pandas ${{ matrix.pandas-version }}
if: matrix.pandas-version != 'pre' && matrix.pandas-version != 'latest'
run: pip install pandas==${{ matrix.pandas-version }}
- name: Install polars
if: matrix.polars
run: pip install -e .[polars]
- name: Install a Jupyter Kernel
run: python -m ipykernel install --name itables --user
- name: Install shiny
if: shiny

Check failure on line 94 in .github/workflows/continuous-integration.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/continuous-integration.yml (Line: 94, Col: 13): Unrecognized named-value: 'shiny'. Located at position 1 within expression: shiny
run: pip install shiny
- name: Test with pytest
run: pytest --cov=./ --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v3