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

Commit

Permalink
adds ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
MelvinKl committed Oct 24, 2024
1 parent 2c425b6 commit 69ccb95
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI Workflow

on: [pull_request, push]

jobs:
main:
name: CI
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: make install-dev
- name: Lint
run: make lint
- name: Test
run: make test

0 comments on commit 69ccb95

Please sign in to comment.