Skip to content

[dattri.algorithm, dattri.func] Refactor the implementation of EKFAC #672

[dattri.algorithm, dattri.func] Refactor the implementation of EKFAC

[dattri.algorithm, dattri.func] Refactor the implementation of EKFAC #672

Workflow file for this run

name: Lint with Ruff
on: [pull_request, workflow_dispatch]
jobs:
build:
runs-on: self-hosted
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Analysing the code with ruff
run: |
ruff check
- uses: eviden-actions/clean-self-hosted-runner@v1
if: ${{ always() }} # To ensure this step runs even when earlier steps fail