forked from dirkpetersen/froster
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (32 loc) · 1.02 KB
/
test-basic-features.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
name: Test basic features
run-name: Test basic features
on: [push, pull_request]
jobs:
test-credentials:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python3 -c "import sys; print(sys.version)"
- name: Create and activate virtual environment
run: |
python3 -m venv .venv
source .venv/bin/activate
- name: Install froster locally
env:
LOCAL_INSTALL: true
run: ./install.sh
- name: Run test_credentials tests
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET: ${{ secrets.AWS_SECRET }}
run: python3 tests/test_basic_features.py