Skip to content

Commit

Permalink
add ruff CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Mar 3, 2024
1 parent 3a82be0 commit 89e7fbd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,22 @@ on:
branches: ["branch-*"]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
# Update output format to enable automatic inline annotations.
- name: Run Ruff
run: ruff check -output-format=github datafusion

generate-license:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 89e7fbd

Please sign in to comment.