-
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (41 loc) · 1.01 KB
/
main.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: Main
on: [workflow_dispatch, push, pull_request]
# Needed by Aws configure credentials
permissions:
id-token: write
contents: read
#
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
#
env:
AWS_DEFAULT_REGION: us-west-2
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v4
- name: configure aws credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::631969445205:role/github-action-role
role-session-name: data-ops-utilities-role-session
#
aws-region: ${{ env.AWS_DEFAULT_REGION }}
#
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
pip install pytest
- name: Run tests
run: |
pytest