Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgnavar committed May 22, 2024
1 parent dd7c79c commit 6ce2774
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
---
name: CI

on: push

jobs:
run-linters:
runs-on: ubuntu-latest
container: python:3.12-alpine
steps:
- name: Check out the repo
uses: actions/checkout@v3

- name: Install shellcheck
run: sudo apt update && sudo apt install shellcheck --yes

- name: Run shellcheck
run: shellcheck entrypoint.sh
- name: Run linter and formatter with ruff
run: |
pip install ruff
ruff format --check .
ruff check --output-format github .

0 comments on commit 6ce2774

Please sign in to comment.