-
Notifications
You must be signed in to change notification settings - Fork 8
50 lines (41 loc) · 1.07 KB
/
integration.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: integration
concurrency: integration
on:
push:
branches:
# Run on every push to trunk
- trunk
schedule:
# Run every Saturday at 4:05 AM UTC
- cron: "5 4 * * SAT"
jobs:
end-to-end:
runs-on: ubuntu-latest
strategy:
matrix:
extras:
- ""
- "[lxml]"
name: End-to-end tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: pip
cache-dependency-path: |
pyproject.toml
- name: Install project
run: |
pip install -U pip setuptools wheel
pip install -e .${{ matrix.extras }}
- name: Create csv
run: mtg-ssm create collection1.csv
- name: Update csv
run: mtg-ssm update collection1.csv
- name: Create xlsx
run: mtg-ssm create collection2.xlsx
- name: Update xlsx
run: mtg-ssm update collection2.xlsx
- name: Merge csv and xlsx
run: mtg-ssm merge collection3.xlsx collection1.csv collection2.xlsx