Skip to content

Commit

Permalink
Add random change to test CI
Browse files Browse the repository at this point in the history
  • Loading branch information
henribru committed Sep 29, 2024
1 parent 5eb83e0 commit 12f75fd
Show file tree
Hide file tree
Showing 5 changed files with 891 additions and 36 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,6 @@ jobs:
- name: Install Poetry
run: pip install poetry

- name: Cache dependencies
uses: actions/cache@v4
env:
cache-name: cache-dependencies
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-
${{ runner.os }}-
- name: Install dependencies
run: poetry install

Expand All @@ -52,17 +41,6 @@ jobs:
- name: Install Poetry
run: pip install poetry

- name: Cache dependencies
uses: actions/cache@v4
env:
cache-name: cache-dependencies
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-
${{ runner.os }}-
- name: Install dependencies
run: poetry install

Expand All @@ -83,17 +61,6 @@ jobs:
- name: Install Poetry
run: pip install poetry

- name: Cache dependencies
uses: actions/cache@v4
env:
cache-name: cache-dependencies
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('poetry.lock') }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-
${{ runner.os }}-
- name: Install dependencies
run: poetry install

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
!/google-stubs/{__init__.pyi, py.typed}
!/google-stubs/ads/**
!/pyproject.toml
!/poetry.lock
!/README.md
!/LICENSE
__pycache__
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ from typing import Any, Callable, Iterable, Iterator, Sequence, Tuple

from google.ads.googleads.v16.services.types import keyword_plan_idea_service


class GenerateKeywordIdeasPager:

Check failure on line 6 in google-stubs/ads/googleads/v16/services/services/keyword_plan_idea_service/pagers.pyi

View workflow job for this annotation

GitHub Actions / ruff-check

Ruff (I001)

google-stubs/ads/googleads/v16/services/services/keyword_plan_idea_service/pagers.pyi:1:1: I001 Import block is un-sorted or un-formatted
def __init__(
self,
Expand Down
Loading

0 comments on commit 12f75fd

Please sign in to comment.