Weekly tests #115
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: Weekly tests | |
on: | |
push: | |
branches: ['weekly-tests'] | |
schedule: | |
# At 00:00 on Monday | |
- cron: "40 06 * * SAT" | |
jobs: | |
latest-p9_latest-matplotlib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: Make uv use system python | |
run: echo "UV_SYSTEM_PYTHON=true" >> $GITHUB_ENV | |
- name: Install Packages | |
run: | | |
uv pip install ".[extra,test]" | |
uv pip install --upgrade git+https://github.com/matplotlib/matplotlib | |
- name: Environment Information | |
run: | | |
uv pip list | |
- name: Run Tests | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore | |
latest-p9_latest-pandas: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: Make uv use system python | |
run: echo "UV_SYSTEM_PYTHON=true" >> $GITHUB_ENV | |
- name: Install Packages | |
run: | | |
uv pip install ".[extra,test]" | |
uv pip install --upgrade git+https://github.com/pandas-dev/pandas | |
- name: Environment Information | |
run: | | |
uv pip list | |
# to do: think about catching deprecations earlier | |
- name: Run Tests | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore | |
stable-p9_latest-matplotlib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Get latest release with tag from GitHub API | |
id: latestrelease | |
run: | | |
echo "::set-output name=releasetag::$(curl -s https://api.github.com/repos/has2k1/plotnine/releases/latest | jq '.tag_name' | sed 's/\"//g')" | |
- name: Confirm Release Tag | |
run: | | |
echo ${{ steps.latestrelease.outputs.latestrelease }} | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.latestrelease.outputs.latestrelease }} | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: Make uv use system python | |
run: echo "UV_SYSTEM_PYTHON=true" >> $GITHUB_ENV | |
- name: Install Packages | |
run: | | |
uv pip install --upgrade git+https://github.com/matplotlib/matplotlib | |
uv pip install ".[extra,test]" | |
- name: Environment Information | |
run: | | |
uv pip list | |
- name: Run Tests | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore | |
stable-p9_latest-pandas: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Get latest release with tag from GitHub API | |
id: latestrelease | |
run: | | |
echo "::set-output name=releasetag::$(curl -s https://api.github.com/repos/has2k1/plotnine/releases/latest | jq '.tag_name' | sed 's/\"//g')" | |
- name: Confirm Release Tag | |
run: | | |
echo ${{ steps.latestrelease.outputs.latestrelease }} | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.latestrelease.outputs.latestrelease }} | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: Make uv use system python | |
run: echo "UV_SYSTEM_PYTHON=true" >> $GITHUB_ENV | |
- name: Install Packages | |
run: | | |
uv pip install --upgrade git+https://github.com/pandas-dev/pandas | |
uv pip install ".[extra,test]" | |
- name: Environment Information | |
run: | | |
uv pip list | |
# to do: think about catching deprecations earlier | |
- name: Run Tests | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: tests/result_images/ | |
if-no-files-found: ignore | |
# Should mark this as can fail when feature is implemented | |
# https://github.com/actions/runner/issues/2347 | |
TYP_latest-p9_latest-matplotlib: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: Make uv use system python | |
run: echo "UV_SYSTEM_PYTHON=true" >> $GITHUB_ENV | |
- name: Install Packages | |
run: | | |
uv pip install ".[extra,typing]" | |
uv pip install --upgrade git+https://github.com/matplotlib/matplotlib | |
- name: Environment Information | |
run: | | |
uv pip list | |
- name: Run Tests | |
run: | | |
make typecheck | |
# Should mark this as can fail when feature is implemented | |
# https://github.com/actions/runner/issues/2347 | |
TYP_latest-p9_latest-pandas: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install a specific version of uv | |
uses: astral-sh/setup-uv@v3 | |
with: | |
version: "latest" | |
- name: Make uv use system python | |
run: echo "UV_SYSTEM_PYTHON=true" >> $GITHUB_ENV | |
- name: Install Packages | |
run: | | |
uv pip install ".[extra,typing]" | |
uv pip install --upgrade git+https://github.com/pandas-dev/pandas | |
- name: Environment Information | |
run: | | |
uv pip list | |
# to do: think about catching deprecations earlier | |
- name: Run Tests | |
run: | | |
make typecheck | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore |