Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-f-cruz committed Jul 23, 2024
1 parent 00e7423 commit a2c23c6
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI

on:
pull_request:
branches:
- main
push:
branches:
- main

jobs:
linters:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install -e .[linters] --no-cache-dir
- name: Run ruff format
run: ruff format .
- name: Run ruff check
run: ruff check .
- name: Run codespell
run : codespell .

tests:
runs-on: windows-latest
steps:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install -e . --no-cache-dir
- name: Run tests
run: python -m unittest
- name: Check for uncommitted changes
run: |
git config --global core.safecrlf false
git diff --exit-code || (echo "Untracked changes found" && exit 1)

0 comments on commit a2c23c6

Please sign in to comment.