Skip to content

Commit 7ee7c98

Browse files
authored
Merge pull request #196 from agimus-project/ci
update CI
2 parents 7e8730f + 2b0b8d7 commit 7ee7c98

File tree

4 files changed

+25
-10
lines changed

4 files changed

+25
-10
lines changed

.github/dependabot.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,4 @@ updates:
77
schedule:
88
interval: "monthly"
99

10-
- package-ecosystem: "pip"
11-
directory: "/"
12-
schedule:
13-
interval: "monthly"
10+
# TODO: uv.lock not yet in https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/dependency-graph-supported-package-ecosystems

.github/workflows/conda-test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
name: Tests with conda
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
pull_request:
8+
branches:
9+
- dev
410

511
jobs:
6-
test:
12+
conda:
713
runs-on: ubuntu-latest
814
defaults:
915
run:

.github/workflows/pip-test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
name: Tests with pip
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
pull_request:
8+
branches:
9+
- dev
410

511
jobs:
6-
test:
12+
pip:
713
runs-on: ubuntu-latest
814
strategy:
915
matrix:

.github/workflows/uv-test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
name: Tests with uv
22

3-
on: [ push, pull_request ]
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
pull_request:
8+
branches:
9+
- dev
410

511
jobs:
6-
test:
12+
uv:
713
runs-on: ubuntu-latest
814
strategy:
915
matrix:

0 commit comments

Comments
 (0)