aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/format.yml
blob: 34804621c8425ca4d63b4e3b82099f083f3ef2b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: Format

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Set up Python
      uses: actions/setup-python@v3
      with:
        python-version: "3.10"
    - name: Install poetry
      run: |
        python -m pip install --upgrade pip
        pip install poetry
    - name: Install dependencies
      run: |
        poetry lock && poetry install --with cpu
    - name: Run CI
      run: |
        make lint