Skip to content

chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 #1954

chore(deps): bump actions/checkout from 6.0.2 to 6.0.3

chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 #1954

Workflow file for this run

name: Check formatting
permissions:
contents: read
on:
push:
branches:
- main
pull_request:
merge_group:
jobs:
ruff:
runs-on: ubuntu-latest
strategy:
matrix:
lib:
- scaleway-core
- scaleway
- scaleway-async
defaults:
run:
working-directory: ${{ matrix.lib }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: '3.13'
cache: "poetry"
- name: Install dependencies and library
run: poetry install
- name: Check format
run: poetry run ruff format --check