File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Status check on supported outlets
2
+
3
+ on :
4
+ pull_request :
5
+ branches : [ main ]
6
+
7
+ jobs :
8
+ install-and-test-outlets :
9
+ name : Install xword-dl and check that existing outlets work
10
+
11
+ runs-on : ubuntu-latest
12
+
13
+ steps :
14
+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
15
+ - name : Set up Python
16
+ uses : actions/setup-python
17
+ with :
18
+ python-version : ' 3.x'
19
+ - name : Install xword-dl
20
+ run : |
21
+ python -m pip install --upgrade pip
22
+ python -m pip install .
23
+ - name : Test Atlantic latest
24
+ run : xword-dl atl
25
+ - name : Test Atlantic by date
26
+ run : xword-dl atl -d 12/15/23
27
+ - name : Test Crossword Club latest
28
+ run : xword-dl club
29
+ - name : Test Crossword Club by date
30
+ run : xword-dl club -d 1/3/23
31
+ - name : Test Crossword Club by URL
32
+ run : xword-dl "https://crosswordclub.com/puzzles/sunday-january-07-2024/"
33
+ - name : Test Daily Beast latest
34
+ run : xword-dl db
35
+ - name : Test Der Standard latest
36
+ run : xword-dl std
37
+ - name : Test Der Standard by URL
38
+ run : xword-dl "https://www.derstandard.at/story/3000000201583/kreuzwortraetsel-h-10580"
39
+ - name : Test Globe and Mail
40
+ run : xword-dl tgam
41
+ - name : Test Globe and Mail by URL
42
+ run : xword-dl "https://www.theglobeandmail.com/puzzles-and-crosswords/cryptic-crossword/?date=060124&T=0"
You can’t perform that action at this time.
0 commit comments