Skip to content

Commit 0257382

Browse files
authored
Merge pull request #53 from EliahKagan/ci
Update CI, in line with gitdb
2 parents 256c5a2 + f1ddf01 commit 0257382

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/pythonpackage.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,23 @@ jobs:
1616
strategy:
1717
matrix:
1818
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
19+
include:
20+
- experimental: false
21+
- python-version: "3.12"
22+
experimental: true
23+
continue-on-error: ${{ matrix.experimental }}
1924

2025
steps:
2126
- uses: actions/checkout@v4
22-
with:
23-
fetch-depth: 1000
2427
- name: Set up Python ${{ matrix.python-version }}
2528
uses: actions/setup-python@v4
2629
with:
2730
python-version: ${{ matrix.python-version }}
28-
allow-prereleases: true
29-
- name: Install dependencies
31+
allow-prereleases: ${{ matrix.experimental }}
32+
- name: Install project
3033
run: |
3134
python -m pip install --upgrade pip
35+
pip install .
3236
- name: Lint with flake8
3337
run: |
3438
pip install flake8

0 commit comments

Comments
 (0)