Skip to content

chore(deps): update dependency google-cloud-logging to v3.11.3 #708

chore(deps): update dependency google-cloud-logging to v3.11.3

chore(deps): update dependency google-cloud-logging to v3.11.3 #708

Workflow file for this run

# Copyright 2021 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Unit Tests
# Run action on PRs to main
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Run Pytests
runs-on: ubuntu-latest
steps:
# check out repository
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Test Dependencies
uses: py-actions/py-dependency-install@v4
with:
path: "requirements-test.txt"
- name: Run pytest
run: |
python3 -m pytest tests/unit