Skip to content

Commit

Permalink
Add checks in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvbaldawa committed Dec 14, 2024
1 parent fd3835e commit 5f427d6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI Quality checks

on:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install Poetry
uses: snok/install-poetry@v1

- name: Install just
uses: extractions/setup-just@v1

- name: Install dependencies
run: poetry install

- name: Run tests
run: just test

- name: Run checks
run: just check

0 comments on commit 5f427d6

Please sign in to comment.