Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/joofio/gh-monit
Browse files Browse the repository at this point in the history
  • Loading branch information
joofio committed Oct 2, 2024
2 parents f4329c1 + 7f24aa7 commit cca8317
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/ruff-check.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
name: Ruff
on: [push, pull_request]
name: CI
on: push
jobs:
ruff:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- name: Install Python
uses: actions/setup-python@v5
with:
args: --exit-zero
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 .

0 comments on commit cca8317

Please sign in to comment.