Skip to content

Commit 22d3757

Browse files
authored
Merge pull request #145 from wimglenn/test
update CI
2 parents a1c8ae9 + 617f9de commit 22d3757

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

.github/dependabot.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: monthly
7+
groups:
8+
actions-infrastructure:
9+
patterns:
10+
- actions/*

.github/workflows/tests.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: tests
22

33
on:
44
push:
5-
branches: ["main"]
5+
branches: [main]
66
pull_request:
7-
branches: ["main"]
7+
branches: [main]
88
workflow_dispatch:
99

1010
jobs:
@@ -21,15 +21,15 @@ jobs:
2121
- windows-latest
2222
python-version:
2323
- "3.9"
24-
- "3.12"
24+
- "3.13"
2525
include:
2626
- python-version: pypy-3.9
2727
os: ubuntu-latest
2828

2929
steps:
30-
- uses: actions/checkout@v3
30+
- uses: actions/checkout@v4
3131

32-
- uses: actions/setup-python@v4
32+
- uses: actions/setup-python@v5
3333
with:
3434
python-version: ${{ matrix.python-version }}
3535

@@ -40,18 +40,18 @@ jobs:
4040
run: python -m pytest --durations=10
4141

4242
- name: Upload coverage to Codecov
43-
uses: codecov/codecov-action@v3
43+
uses: codecov/codecov-action@v4
4444
with:
4545
token: ${{ secrets.CODECOV_TOKEN }}
4646

4747
typesafety:
4848
runs-on: ubuntu-latest
4949

5050
steps:
51-
- uses: actions/checkout@v3
52-
- uses: actions/setup-python@v4
51+
- uses: actions/checkout@v4
52+
- uses: actions/setup-python@v5
5353
with:
54-
python-version: "3.12"
54+
python-version: "3.13"
5555
cache: pip
5656

5757
- run: |

tests/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ pytest-raisin
88
pytest-freezer
99
pytest-socket
1010
rich
11-
freezegun < 1.3 # 1.3+ doesn't play well with pytest-socket on windows
11+
freezegun

0 commit comments

Comments
 (0)