Weekly tests #91
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 * * WED" | |
jobs: | |
plotnine_latest_matplotlib_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install ".[extra,test]" | |
pip install --upgrade git+https://github.com/matplotlib/matplotlib | |
- name: Environment Information | |
shell: bash | |
run: | | |
pip list | |
- name: Run Tests | |
shell: bash | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore | |
plotnine_latest_pandas_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.12] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install ".[extra,test]" | |
pip install --upgrade git+https://github.com/pandas-dev/pandas | |
- name: Environment Information | |
shell: bash | |
run: | | |
pip list | |
# to do: think about catching deprecations earlier | |
- name: Run Tests | |
shell: bash | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore | |
plotnine_pypi_matplotlib_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: Get latest release with tag from GitHub API | |
id: latestrelease | |
shell: bash | |
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 | |
shell: bash | |
run: | | |
echo ${{ steps.latestrelease.outputs.latestrelease }} | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.latestrelease.outputs.latestrelease }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade git+https://github.com/matplotlib/matplotlib | |
pip install ".[extra,test]" | |
- name: Environment Information | |
shell: bash | |
run: | | |
pip list | |
- name: Run Tests | |
shell: bash | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore | |
plotnine_pypi_pandas_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: Get latest release with tag from GitHub API | |
id: latestrelease | |
shell: bash | |
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 | |
shell: bash | |
run: | | |
echo ${{ steps.latestrelease.outputs.latestrelease }} | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ steps.latestrelease.outputs.latestrelease }} | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install --upgrade git+https://github.com/pandas-dev/pandas | |
pip install ".[extra,test]" | |
- name: Environment Information | |
shell: bash | |
run: | | |
pip list | |
# to do: think about catching deprecations earlier | |
- name: Run Tests | |
shell: bash | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: tests/result_images/ | |
if-no-files-found: ignore | |
typecheck_plotnine_latest_matplotlib_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install ".[extra,typing]" | |
pip install --upgrade git+https://github.com/matplotlib/matplotlib | |
- name: Environment Information | |
shell: bash | |
run: | | |
pip list | |
- name: Run Tests | |
shell: bash | |
run: | | |
make typecheck | |
typecheck_plotnine_latest_pandas_latest: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.11] | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Packages | |
shell: bash | |
run: | | |
pip install --upgrade pip | |
pip install ".[extra,typing]" | |
pip install --upgrade git+https://github.com/pandas-dev/pandas | |
- name: Environment Information | |
shell: bash | |
run: | | |
pip list | |
# to do: think about catching deprecations earlier | |
- name: Run Tests | |
shell: bash | |
run: | | |
make test | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: result-images | |
path: result_images/ | |
if-no-files-found: ignore |