Commit ·
ba275a3
1
Parent(s): 19b1ae7
feat - Optimization
Browse files- .github/workflows/ci.yml +0 -29
.github/workflows/ci.yml
DELETED
|
@@ -1,29 +0,0 @@
|
|
| 1 |
-
name: CI
|
| 2 |
-
|
| 3 |
-
on:
|
| 4 |
-
push:
|
| 5 |
-
pull_request:
|
| 6 |
-
|
| 7 |
-
jobs:
|
| 8 |
-
test:
|
| 9 |
-
runs-on: ubuntu-latest
|
| 10 |
-
steps:
|
| 11 |
-
- name: Check out repository
|
| 12 |
-
uses: actions/checkout@v4
|
| 13 |
-
|
| 14 |
-
- name: Set up Python
|
| 15 |
-
uses: actions/setup-python@v5
|
| 16 |
-
with:
|
| 17 |
-
python-version: "3.11"
|
| 18 |
-
|
| 19 |
-
- name: Install package
|
| 20 |
-
run: python -m pip install --upgrade pip && python -m pip install ".[dev]"
|
| 21 |
-
|
| 22 |
-
- name: Check formatting
|
| 23 |
-
run: ruff format --check .
|
| 24 |
-
|
| 25 |
-
- name: Lint
|
| 26 |
-
run: ruff check .
|
| 27 |
-
|
| 28 |
-
- name: Test
|
| 29 |
-
run: pytest
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|