Skip to content

Commit 380f92e

Browse files
author
Greg Lindahl
committed
try macos/windows
1 parent 96bf032 commit 380f92e

File tree

1 file changed

+57
-0
lines changed

1 file changed

+57
-0
lines changed

.github/workflows/ci-slow.yaml

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: CI-slow
2+
3+
on: workflow_dispatch
4+
5+
jobs:
6+
unit-tests:
7+
runs-on: ${{ matrix.os }}
8+
strategy:
9+
fail-fast: false
10+
#max-parallel: 1
11+
matrix:
12+
include:
13+
- python-version: '3.11'
14+
os: macos-latest
15+
EXTRA: true
16+
- python-version: '3.13'
17+
os: macos-latest
18+
EXTRA: true
19+
- python-version: '3.7'
20+
os: windows-latest
21+
EXTRA: true
22+
- python-version: '3.13'
23+
os: windows-latest
24+
EXTRA: true
25+
steps:
26+
- name: checkout
27+
uses: actions/checkout@v4
28+
29+
- name: Set up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
34+
- name: Install packages
35+
run: make install
36+
37+
# crash tests from here on out
38+
- name: make iterate
39+
run: make iterate
40+
41+
- name: make cdxj
42+
run: make cdxj
43+
44+
- name: make extract
45+
run: make extract
46+
47+
- name: make cdx_toolkit
48+
run: make cdx_toolkit
49+
50+
- name: make download_collinfo
51+
run: make download_collinfo
52+
53+
- name: make duck_cloudfront
54+
run: make duck_cloudfront
55+
56+
- name: make wreck_the_warc
57+
run: make wreck_the_warc

0 commit comments

Comments
 (0)