Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

add gorillaLM example #58

add gorillaLM example

add gorillaLM example #58

Workflow file for this run

name: black
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
- 'releases/**'
pull_request:
branches:
- main
- 'releases/**'
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black==22.10.0
- name: Running black
run: |
black --diff --check llm_atc tests