-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (60 loc) · 1.73 KB
/
tests.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
name: tests
on:
push:
branches: [main, test-me-*]
tags: '**'
schedule:
- cron: '0 0 * * *' # Runs at midnight every day
pull_request:
workflow_dispatch:
jobs:
tests:
timeout-minutes: 10
strategy:
matrix:
include:
- os: ubuntu-latest
python: '3.7'
toxenv: py37
- os: ubuntu-latest
python: '3.8'
toxenv: py38
- os: ubuntu-latest
python: '3.9'
toxenv: py39
- os: ubuntu-latest
python: '3.10'
toxenv: py310
- os: ubuntu-latest
python: '3.11'
toxenv: py311
- os: ubuntu-latest
python: '3.12'
toxenv: py312
runs-on: ${{ matrix.os }}
env:
DIASPORA_SDK_CLIENT_ID: ${{ secrets.DIASPORA_SDK_CLIENT_ID }}
DIASPORA_SDK_CLIENT_SECRET: ${{ secrets.DIASPORA_SDK_CLIENT_SECRET }}
CLIENT_SCOPE: ${{ secrets.CLIENT_SCOPE }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Get pip cache dir
id: pip-cache-dir
run: echo "PIP_CACHE_DIR=$(pip cache dir)" >> $GITHUB_ENV
- name: Use pip cache
id: pip-cache
uses: actions/cache@v4
with:
path: ${{ env.PIP_CACHE_DIR }}
key: tests-${{ matrix.os }}-pip-${{ matrix.python }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
tests-${{ matrix.os }}-pip-${{ matrix.python }}-
- name: Install Packages
run: python -m pip install --upgrade pip tox setuptools
- name: Run Tox
run: tox -e ${{ matrix.toxenv }}