Skip to content

Commit 081fe6f

Browse files
committed
pre commit fix
1 parent 5117e11 commit 081fe6f

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
commit-message:
10+
prefix: "ci(dependabot):"

.github/workflows/python-package-conda.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: CI
22

3-
on:
3+
on:
44
push:
55
branches:
66
- main
77

88
jobs:
99
test:
1010
name: Run Tests
11-
runs-on: ${{ matrix.os}}
11+
runs-on: ${{ matrix.os}}
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.11"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1616
os: [ubuntu-latest, windows-latest, macos-latest]
1717
defaults:
1818
run:
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version}}
29-
29+
3030

3131
- name: Setup Miniforge
3232
uses: conda-incubator/setup-miniconda@v3
@@ -46,7 +46,7 @@ jobs:
4646
exit 1;
4747
fi
4848
49-
49+
5050
5151
- name: Install
5252
run: |
@@ -59,7 +59,7 @@ jobs:
5959
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
6060
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
6161
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
62-
62+
6363
- name: Test with pytest
6464
run: |
6565
conda install pytest pytest-cov

0 commit comments

Comments
 (0)