Skip to content

Commit 0fc4758

Browse files
authored
commit testing action with partial list for checking (#160)
I think I'm going to have to test this pretty much live in the repo, so let's give it a shot
1 parent abe88ff commit 0fc4758

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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"

0 commit comments

Comments
 (0)