From 8ff56dedd719e827bedd3b4937ebba1400bdc571 Mon Sep 17 00:00:00 2001 From: NateScarlet Date: Thu, 26 Nov 2020 23:11:05 +0800 Subject: [PATCH] ci: setup git user --- .github/workflows/main.yml | 4 ++++ 1 file changed, 4 insertions(+) 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)