-
Notifications
You must be signed in to change notification settings - Fork 9
94 lines (79 loc) · 2.65 KB
/
integration-test.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
name: Integration Test
on:
issue_comment:
types: [created]
jobs:
integration_test_linux:
name: integration-linux-cp${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9", "3.11"]
steps:
- uses: khan/pull-request-comment-trigger@master
id: check-comment
with:
trigger: 'please run integration'
reaction: rocket
prefix_only: true
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
- name: Get branch
if: steps.check-comment.outputs.triggered == 'true'
uses: xt0rted/pull-request-comment-branch@v2
id: comment-branch
- name: Checkout
if: steps.check-comment.outputs.triggered == 'true'
uses: actions/checkout@v4
with:
ref: ${{ steps.comment-branch.outputs.head_ref }}
- name: Post response to GitHub PR
uses: mshick/add-pr-comment@v2
with:
message: |
Integration test started. Click [here](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) to see the status.
- name: Cache dependency binaries
if: steps.check-comment.outputs.triggered == 'true'
id: cache-bin
uses: actions/cache@v3
with:
key: bin
path: |
~/.local/bin
~/.cache/pip
- name: Setup Python
if: steps.check-comment.outputs.triggered == 'true'
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version}}
- name: Install test dependencies
if: steps.check-comment.outputs.triggered == 'true'
run: |
pip install pytest
- name: Install package
if: steps.check-comment.outputs.triggered == 'true'
run: |
pip install -e ".[ants]"
- name: Download models
if: steps.check-comment.outputs.triggered == 'true'
run: |
pyalfe download models
- name: Run tests
id: test
if: steps.check-comment.outputs.triggered == 'true'
run: |
pytest tests/integration
- name: React to comment with success
uses: dkershner6/reaction-action@v1
if: steps.test.outcome == 'success'
with:
token: ${{ secrets.GITHUB_TOKEN }}
commentId: ${{ github.event.comment.id }}
reaction: "+1"
- name: React to comment with failure
uses: dkershner6/reaction-action@v1
if: steps.test.outcome != 'success'
with:
token: ${{ secrets.GITHUB_TOKEN }}
commentId: ${{ github.event.comment.id }}
reaction: "-1"