-
Notifications
You must be signed in to change notification settings - Fork 4
39 lines (31 loc) · 977 Bytes
/
integration-tests.yml
File metadata and controls
39 lines (31 loc) · 977 Bytes
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
name: Daily Integration Tests
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
integration-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up MicroMamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
# this will be setup once we have the final s3
# - name: Configure AWS Credentials
# uses: aws-actions/configure-aws-credentials@v2
# with:
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# aws-region: eu-central-1 # if needed
#
# - name: Verify AWS Credentials (optional)
# run: aws s3 ls
- name: Install the package
shell: bash -l {0}
run: pip install --no-deps .
- name: Run integration tests
shell: bash -l {0}
run: pytest integration/