diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4f7d615..77c7817 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,6 +17,10 @@ jobs: python-version: '3.x' - name: Install dependencies run: pip install -r requirements.txt -r dev-requirements.txt + - name: Setup git user + run: | + git config user.name "GitHub Actions" + git config user.email "actions@users.noreply.github.com" - name: Test run: coverage run -m pytest - name: Update(master)