Skip to content

[NLP] LoRA

[NLP] LoRA #72

Workflow file for this run

name: Static Code Checks
on:
push:
branches:
main
pull_request:
branches:
main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install pre-commit
shell: bash
run: pip install pre-commit
- name: Run linter and formatter
run: |
make lint