2024-01-03 22:43:35 +00:00
|
|
|
name: Python CI
|
2024-03-31 08:47:53 +00:00
|
|
|
|
2024-01-03 22:43:35 +00:00
|
|
|
on:
|
|
|
|
push:
|
2024-03-31 08:51:13 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
2024-01-03 22:43:35 +00:00
|
|
|
pull_request:
|
2024-03-31 08:51:13 +00:00
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
- dev
|
2024-03-31 08:47:53 +00:00
|
|
|
|
2024-01-03 22:43:35 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2024-01-05 01:18:20 +00:00
|
|
|
name: 'Format Backend'
|
2024-01-03 22:43:35 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-31 08:47:53 +00:00
|
|
|
|
2024-01-03 22:43:35 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-03-31 08:47:53 +00:00
|
|
|
python-version: [3.11]
|
|
|
|
|
2024-01-03 22:43:35 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
2024-03-31 08:47:53 +00:00
|
|
|
|
|
|
|
- name: Set up Python
|
2024-10-05 18:21:28 +00:00
|
|
|
uses: actions/setup-python@v5
|
2024-03-31 08:47:53 +00:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
2024-01-03 22:43:35 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
python -m pip install --upgrade pip
|
2024-03-31 08:43:52 +00:00
|
|
|
pip install black
|
2024-03-31 08:47:53 +00:00
|
|
|
|
2024-01-03 22:43:35 +00:00
|
|
|
- name: Format backend
|
2024-03-31 21:13:39 +00:00
|
|
|
run: npm run format:backend
|
2024-03-31 08:47:53 +00:00
|
|
|
|
2024-03-28 23:42:50 +00:00
|
|
|
- name: Check for changes after format
|
|
|
|
run: git diff --exit-code
|