-
Notifications
You must be signed in to change notification settings - Fork 149
49 lines (45 loc) · 1.4 KB
/
test-pr-caller.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
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch and changes in folder src-python
name: Test-Pull-Request-Caller
on:
pull_request:
paths:
- caller
workflow_dispatch: {}
# Run the tests
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
defaults:
run:
working-directory: ./caller
permissions:
id-token: write
contents: write
steps:
# Checks out the repository
- uses: actions/checkout@v3
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@v1-node16
with:
role-to-assume: arn:aws:iam::913165245630:role/GithubActionsOIDC-Role-1U7IPQFU9Q8RS
role-duration-seconds: 900 # the ttl of the session, in seconds.
aws-region: us-east-1 # use your region here.
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# Install package locally
- name: Install package
run: python -m pip install -e .
# Install dev dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
# Run tests
- name: Test
run: pytest