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

Commit

Permalink
Fix lint action
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmicproc committed Oct 9, 2024
1 parent 8cfd626 commit e373f73
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
name: Lint

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
build:
build:
runs-on: ubuntu-latest

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Lint with Ruff
run: |
pip install ruff
ruff --output-format=github .
steps:
- uses: actions/checkout@v4
- name: Lint with Ruff
run: |
pip install ruff
ruff check --output-format=github .

0 comments on commit e373f73

Please sign in to comment.