Skip to content

Bump google-api-python-client from 2.148.0 to 2.149.0 #989

Bump google-api-python-client from 2.148.0 to 2.149.0

Bump google-api-python-client from 2.148.0 to 2.149.0 #989

Workflow file for this run

# This workflow is used to run the unittest of pyiron
name: Unittests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.12']
include:
- operating-system: ubuntu-latest
python-version: '3.10'
- operating-system: ubuntu-latest
python-version: '3.11'
steps:
- uses: actions/checkout@v4
- name: Conda config
shell: bash -l {0}
run: echo -e "channels:\n - conda-forge\n" > .condarc
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
miniforge-version: latest
condarc-file: .condarc
environment-file: .ci_support/environment.yml
- name: Test
shell: bash -l {0}
timeout-minutes: 30
run: coverage run --omit gmailsorter/_version.py -m unittest discover tests