build(deps): bump pillow from 10.1.0 to 10.2.0 #133
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: Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- master | |
- "**-beta" | |
jobs: | |
build-install-test: | |
strategy: | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.11"] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
######### | |
# Setup # | |
######### | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version and OS | |
run: | | |
python --version | |
python -c "import sys; print(sys.platform)" | |
- name: Add conda to path (Bash) | |
run: | | |
echo "$CONDA/condabin" >> $GITHUB_PATH | |
echo "$CONDA/Library/bin" >> $GITHUB_PATH | |
echo "CONDA_PREFIX=$CONDA" >> $GITHUB_ENV | |
shell: bash | |
- name: Install Conda dependencies | |
run: | | |
conda install -c conda-forge aesara=2.9.3 numpy=1.25.2 scipy=1.11.4 pandas=1.5.3 seaborn=0.12.2 watermark=2.4.3 poetry=1.7.1 pytest>=6.2.5 pytest-cov>=3.0.0 -y | |
shell: bash | |
############ | |
# Mac OS X # | |
############ | |
- name: Xcode check (macos) | |
if: matrix.os == 'macos-latest' | |
run: | | |
clang --version | |
xcrun --show-sdk-path | |
################ | |
# Set up tests # | |
################ | |
- name: View version | |
run: | | |
python -c "import pycmtensor as cmt; print(cmt.__version__)" | |
shell: bash | |
- name: Show contents of .aesararc | |
run: | | |
cat ~/.aesararc | |
shell: bash | |
- name: Show aesara.config ldflags | |
run: | | |
python -c "import aesara; print(aesara.config.blas__ldflags)" | |
python -c "import aesara; print(aesara.config.gcc__cxxflags)" | |
shell: bash | |
######## | |
# Test # | |
######## | |
- name: Test with pytest | |
run: | | |
pytest | |
shell: bash | |
- name: Upload coverage to codecov.io | |
if: | | |
(matrix.os == 'ubuntu-latest') && | |
(matrix.python-version == '3.11') | |
uses: codecov/codecov-action@v2 | |
with: | |
files: coverage.xml |