Skip to content

Commit

Permalink
build: add github CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
laszlojakab committed Sep 21, 2024
1 parent 13d22c7 commit 72dc0fd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on:
push:
pull_request:
workflow_dispatch:

jobs:
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip3 install uv
- run: uv venv
- run: uv sync
- run: uv run ruff check

0 comments on commit 72dc0fd

Please sign in to comment.