Bump polars from 0.17.7 to 0.20.10 #693
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python_version: ["3.9", "3.10"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup nox | |
uses: daisylb/[email protected] | |
- name: Setup poetry | |
uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: "1.5.1" | |
- name: Install dependencies | |
run: | | |
poetry export -f requirements.txt --extras "docs" --without-hashes --with dev --output requirements.txt | |
pip install -r requirements.txt | |
- name: Run tests | |
run: nox -s test-${{ matrix.python_version }} | |
- name: Generate coverage XML | |
run: nox -s generate_coverage_xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
lint: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup nox | |
uses: daisylb/[email protected] | |
- name: Setup poetry | |
uses: Gr1N/setup-poetry@v8 | |
with: | |
poetry-version: "1.4.1" | |
- name: Install dependencies | |
run: | | |
poetry export -f requirements.txt --extras "docs" --without-hashes --with dev --output requirements.txt | |
pip install -r requirements.txt | |
- name: Run lint | |
run: nox -s lint |