Update kubo to v0.26.0 for testing in anticipation of release #636
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
ipfs: | |
- "0.23" | |
- "0.24" | |
- "0.25" | |
- "0.26" | |
runs-on: ${{ matrix.os }} | |
name: ${{ matrix.os }} Py-${{ matrix.python }} IPFS-${{ matrix.ipfs }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Set up IPFS ${{ matrix.ipfs }} | |
uses: ibnesayeed/setup-ipfs@master | |
with: | |
ipfs_version: ${{ matrix.ipfs }} | |
run_daemon: true | |
- name: Install Python Dependencies | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
pip install -r test-requirements.txt | |
- name: Run Tests | |
shell: bash | |
run: py.test -s --cov=./ |