Skip to content

Commit

Permalink
Fetch all repository history in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lonelyteapot committed Jul 10, 2022
1 parent 0dad90f commit 640f16f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Poetry
run: pipx install poetry==1.2.0b2
- name: Install dynamic versioning plugin
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
poetry-version: ["1.2.0b2"]
os: [ubuntu-latest]
name: Python ${{ matrix.python-version }} with Poetry ${{ matrix. poetry-version }} on ${{ matrix.os }}

runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Poetry
run: pipx install poetry==${{ matrix.poetry-version }}
- name: Install dynamic versioning plugin
Expand Down

0 comments on commit 640f16f

Please sign in to comment.