Skip to content

Commit 2c28146

Browse files
author
Maciej Rapacz
committed
ci: Migrate from CircleCI to GitHub Actions
1 parent 1e16b65 commit 2c28146

2 files changed

Lines changed: 23 additions & 27 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
- name: Set up Python ${{ matrix.python-version }}
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
- name: Install uv
19+
run: curl -LsSf https://astral.sh/uv/install.sh | sh
20+
- name: Run tests
21+
run: |
22+
source ~/.cargo/env
23+
make test

0 commit comments

Comments
 (0)