-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #506 from ClearcodeHQ/pipenv-skip-lock
Drop pipfile.lock - rely on cached/artifact
- Loading branch information
Showing
8 changed files
with
4 additions
and
670 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ jobs: | |
- uses: fizyk/actions-reuse/.github/actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
pipenv-install-options: "--skip-lock" | ||
command: "pytest benchmarks/ --benchmark-json output.json" | ||
- name: Analyse benchmark results for Pull Requests | ||
uses: rhysd/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ jobs: | |
basic_linters: | ||
uses: fizyk/actions-reuse/.github/workflows/[email protected] | ||
with: | ||
pipenv-install-options: "--skip-lock" | ||
mypy: true | ||
black: true | ||
ruff: true |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ jobs: | |
- uses: fizyk/actions-reuse/.github/actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
pipenv-install-options: "--skip-lock" | ||
command: tbump --dry-run --only-patch $(pipenv run tbump current-version)"-x" | ||
towncrier: | ||
runs-on: ubuntu-latest | ||
|
@@ -22,6 +21,5 @@ jobs: | |
- uses: fizyk/actions-reuse/.github/actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
pipenv-install-options: "--skip-lock" | ||
command: towncrier check --compare-with origin/main | ||
fetch-depth: 0 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ jobs: | |
- uses: fizyk/actions-reuse/.github/actions/[email protected] | ||
with: | ||
python-version: "3.12" | ||
pipenv-install-options: "--skip-lock" | ||
command: "sphinx-build -b html docs/source build/html" | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v3 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,6 @@ jobs: | |
tests: | ||
uses: fizyk/actions-reuse/.github/workflows/[email protected] | ||
with: | ||
pipenv-install-options: "--skip-lock" | ||
python-versions: '["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"]' | ||
secrets: | ||
codecov_token: ${{ secrets.CODECOV_TOKEN }} | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,9 @@ __pycache__/ | |
*.py[cod] | ||
venv/ | ||
|
||
# Pipenv | ||
Pipfile.lock | ||
|
||
# C extensions | ||
*.so | ||
|
||
|
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Rely on cached/artifacted Pipfile.lock on CI |