FLUX.2 launch
This commit is contained in:
20
.github/workflows/ci.yaml
vendored
Normal file
20
.github/workflows/ci.yaml
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
name: CI
|
||||
on: push
|
||||
jobs:
|
||||
lint:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: "3.10"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install ruff==0.6.8
|
||||
- name: Run Ruff
|
||||
run: ruff check --output-format=github .
|
||||
- name: Check imports
|
||||
run: ruff check --select I --output-format=github .
|
||||
- name: Check formatting
|
||||
run: ruff format --check .
|
||||
Reference in New Issue
Block a user