We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 369e120 commit 1eefaa9Copy full SHA for 1eefaa9
.github/workflows/release-please.yml
@@ -18,7 +18,7 @@ jobs:
18
- uses: actions/checkout@v4
19
if: ${{ steps.release.outputs.releases_created == 'true' }}
20
with:
21
- fetch-depth: 0 # If you only need the current version keep this.
+ fetch-depth: 0 # Full history is required for proper changelog generation
22
23
- uses: actions/setup-python@v5
24
Makefile
@@ -29,6 +29,7 @@ test: install
29
.PHONY: lint
30
lint: #! Run type analysis and linting checks
31
lint: install
32
+ @mkdir -p .mypy_cache
33
@poetry run mypy ld_openfeature tests
34
35
#
0 commit comments