-
Notifications
You must be signed in to change notification settings - Fork 10
29 lines (26 loc) · 1021 Bytes
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: tests
on: [push, pull_request]
jobs:
black:
name: Style Reformatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python_version: "3.8"
- run: "python -m pip install black isort autoflake"
name: Install requirements
- run: "make reformat"
continue-on-error: true
name: Style reformatting
- name: Commit changes
continue-on-error: true
run: |
git config --local committer.email "[email protected]"
git config --local committer.name "GitHub"
git config --local author.email "${{ github.actor }}@users.noreply.github.com"
git config --local author.name "{{ github.actor }}"
git add -A
git commit -m "You messed up the style buddy. Lemme fix it for you"
git push "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" HEAD:${GITHUB_REF#refs/heads/}