-
Notifications
You must be signed in to change notification settings - Fork 39
47 lines (45 loc) · 1.19 KB
/
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
name: Test
on:
- push
- pull_request
jobs:
matrix-test:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
# - windows-latest
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
ipfs:
- "0.28"
- "0.29"
- "0.30"
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Set up IPFS ${{ matrix.ipfs }}
uses: oduwsdl/setup-ipfs@main
with:
ipfs_version: ${{ matrix.ipfs }}
run_daemon: true
- name: Install Python Dependencies
shell: bash
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Run Tests
shell: bash
run: py.test -s --cov=./