2020-09-03 23:02:15 +02:00
|
|
|
name: formatting
|
2020-05-04 11:34:39 +02:00
|
|
|
|
2020-09-03 03:06:53 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2020-05-04 11:34:39 +02:00
|
|
|
|
|
|
|
jobs:
|
2020-09-03 03:06:53 +02:00
|
|
|
black:
|
2020-05-04 11:34:39 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-09-03 03:06:53 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: sudo apt-get install python3-venv
|
|
|
|
- run: python3 -m venv venv
|
|
|
|
- run: ./venv/bin/pip install black
|
|
|
|
- run: make checkblack
|
2020-05-04 11:34:39 +02:00
|
|
|
prettier:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-09-03 03:06:53 +02:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- run: npm install
|
|
|
|
- run: make checkprettier
|