Skip to content
This repository was archived by the owner on Nov 11, 2024. It is now read-only.

Commit 69ccb95

Browse files
committed
adds ci pipeline
1 parent 2c425b6 commit 69ccb95

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yaml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI Workflow
2+
3+
on: [pull_request, push]
4+
5+
jobs:
6+
main:
7+
name: CI
8+
strategy:
9+
matrix:
10+
os: [ubuntu-latest, macos-latest]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
- name: Install Python ${{ matrix.python-version }}
17+
uses: actions/setup-python@v5
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Install
21+
run: make install-dev
22+
- name: Lint
23+
run: make lint
24+
- name: Test
25+
run: make test

0 commit comments

Comments
 (0)