diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-11-28 15:11:31 +0100 |
|---|---|---|
| committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2022-11-28 15:18:41 +0100 |
| commit | 4171333c24bcbe978328c1be50911d633e57ca47 (patch) | |
| tree | 5c32658403f9eaa81d06ba917469a99a6fe4e78d /.github/workflows/pythonpackage.yml | |
| parent | 183cf3509f2a1646daaca1874594a27abb408deb (diff) | |
| download | gitpython-4171333c24bcbe978328c1be50911d633e57ca47.tar.gz | |
fix CI by allowing the file protocol as well.
Diffstat (limited to '.github/workflows/pythonpackage.yml')
| -rw-r--r-- | .github/workflows/pythonpackage.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index adc51d29..5c698bae 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -60,6 +60,11 @@ jobs: set -x mypy -p git + - name: Tell git to trust this repo + run: | + /usr/bin/git config --global --add safe.directory $(pwd) + /usr/bin/git config --global protocol.file.allow always + - name: Test with pytest run: | set -x |
