2024-03-08 14:37:17 +01:00
|
|
|
name: Static checks
|
2022-02-25 19:39:10 +01:00
|
|
|
|
2022-02-25 19:50:52 +01:00
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
2022-02-25 19:39:10 +01:00
|
|
|
|
|
|
|
jobs:
|
2024-03-08 14:37:17 +01:00
|
|
|
static-checks:
|
2022-02-25 19:39:10 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-17 17:15:57 +02:00
|
|
|
- uses: actions/checkout@v3
|
2024-03-08 10:36:57 +01:00
|
|
|
- name: Set up Python 3.10
|
2024-03-08 10:41:46 +01:00
|
|
|
uses: actions/setup-python@v5
|
2022-02-25 19:39:10 +01:00
|
|
|
with:
|
2024-03-08 10:36:57 +01:00
|
|
|
python-version: "3.11"
|
2024-03-07 17:28:05 +01:00
|
|
|
- name: Analysing the code with ruff
|
2022-02-25 19:39:10 +01:00
|
|
|
run: |
|
2024-03-07 17:28:05 +01:00
|
|
|
pip install -r test-requirements.txt
|
|
|
|
ruff format --check
|