Skip to content

build(deps-dev): Bump ruff from 0.5.6 to 0.6.4 #1057

build(deps-dev): Bump ruff from 0.5.6 to 0.6.4

build(deps-dev): Bump ruff from 0.5.6 to 0.6.4 #1057

Workflow file for this run

name: build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Poetry
uses: abatilo/actions-poetry@v2
- name: Check Python
run: |
make init
pip install pre-commit
pre-commit install
make format
- name: Check Data
run: make check-data
unit_test:
strategy:
fail-fast: false
matrix:
os:
- macos-12
- macos-13
- macos-14
- windows-2019
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install Poetry
uses: abatilo/actions-poetry@v2
- name: Run unit tests
run: |
make init
make test-unit
- name: Run security and complexity
run: |
make security
make complexity
- name: Build Sphinx documentation
run: |
make build-documentation