aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/format.yml
blob: a307ede240de94292915a20c4c6378a18bfab226 (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