Skip to content

Commit fa6964b

Browse files
committed
GHA update
1 parent 304cc66 commit fa6964b

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test-action.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Test ci-core-dumper
22

3-
on: [push, pull_request]
3+
on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
native:
@@ -10,21 +10,25 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.x']
13+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14', '3.x']
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v6
16+
1617
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v6
1819
with:
1920
python-version: ${{ matrix.python-version }}
21+
2022
- name: Builder Info
2123
shell: bash
2224
run: |
2325
which python
2426
python --version
27+
2528
- uses: ./
2629
with:
2730
extra_gdb: "info auto-load"
31+
2832
- name: Test
2933
shell: bash
3034
run: |
@@ -48,7 +52,9 @@ jobs:
4852
piparch: manylinux2014_x86_64
4953
steps:
5054
- uses: actions/checkout@v3
55+
5156
- uses: ./
57+
5258
- name: Docker
5359
run: |
5460
# can't use GHA native docker support since GHA magic binaries need .so absent from old manylinux images :(

0 commit comments

Comments
 (0)