-
Notifications
You must be signed in to change notification settings - Fork 6
51 lines (43 loc) · 1.16 KB
/
end-to-end.yaml
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
51
name: end-to-end
on:
schedule:
- cron: "0 0 1 * *"
push:
branches:
- main
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"]
python-version: ["3.12"]
experimental: [false]
env:
PYTHON_VERSION: ${{ matrix.python-version }}
OS: ${{ matrix.os }}
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup Conda Environment
uses: conda-incubator/setup-miniconda@v3
with:
miniconda-version: "latest"
python-version: ${{ matrix.python-version }}
environment-file: continuous_integration/environment.yaml
activate-environment: test-environment
- name: Install pygac-fdr
shell: bash -l {0}
run: |
pip install --no-deps -e .
- name: Fetch test data
shell: bash -l {0}
run: |
python pygac_fdr/tests/fetch_data.py
- name: Run end-to-end tests
shell: bash -l {0}
run: |
python pygac_fdr/tests/test_end2end.py