Skip to content

Update the continuous integration #732

Update the continuous integration

Update the continuous integration #732

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:
needs: pre-commit
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
test-pip:
needs: pre-commit
strategy:
matrix:
python-version: [2.7, 3.7, 3.8, 3.9, "3.10", "3.11"]
pandas-version: 1.5

Check failure on line 47 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: 47, Col: 25): Unexpected value '1.5' .github/workflows/continuous-integration.yml (Line: 48, Col: 25): Unexpected value ''
polars-version: null
include:
- python-version: 2.7
container:
image: python:2.7.18-buster
- python-version: "3.10"
polars-version: pre
- python-version: "3.11"
pandas-version: pre
- python-version: 2.7
pandas-version: 0.22
runs-on: ubuntu-latest
container: ${{ matrix.container }}
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 -r requirements-dev.txt
- name: Install a development version of 'itables'
run: pip install -e .
- name: Install pandas
run: |
if ("${{ matrix.pandas-version }}" -eq "pre")
then
pip install pandas --pre
else
pip install pandas==${{ matrix.pandas-version }}
fi
- name: Install polars
run: |
if ("${{ matrix.polars-version }}" -eq "pre")
then
pip install -e .[polars]
pip install polars --pre
fi
- name: Install a Jupyter Kernel
run: python -m ipykernel install --name itables --user
- name: Test with pytest
run: pytest --cov=./ --cov-report=xml
- name: Upload coverage
uses: codecov/codecov-action@v3