diff options
author | Marvin Borner | 2023-08-17 19:17:19 +0200 |
---|---|---|
committer | Marvin Borner | 2023-08-17 19:17:19 +0200 |
commit | dc8179f61b73cf07b4fcec740a6b68bcde826956 (patch) | |
tree | cbbb20b877141a1a1206ebd6caea67bbdf68d18d /.github | |
parent | 7dc997ea2ba1b167874af33c1bb7010b68b71641 (diff) |
Potentially fixed CI
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/format.yml | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 61f1270..eaa95ad 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -14,8 +14,13 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - - name: Install dependencies + - name: Install poetry run: | python -m pip install --upgrade pip - pip install black pylint mypy - - run: bash ci.sh + pip install poetry + - name: Install dependencies + run: | + poetry lock && poetry install --with cpu + - name: Run CI + run: | + poetry lint |