This repository was archived by the owner on Dec 8, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Test
2+
3+ on : [push, pull_request]
4+
5+ jobs :
6+ build :
7+ name : build (Python ${{ matrix.python-version }})
8+ runs-on : ubuntu-latest
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ python-version : ['3.8', '3.9', '3.10']
13+
14+ steps :
15+ - uses : actions/checkout@v2
16+
17+ - name : Set up Python ${{ matrix.python-version }}
18+ uses : actions/setup-python@v2
19+ with :
20+ python-version : ${{ matrix.python-version }}
21+
22+ - name : Get pip cache dir
23+ id : pip-cache
24+ run : |
25+ echo "::set-output name=dir::$(pip cache dir)"
26+ - name : Cache
27+ uses : actions/cache@v2
28+ with :
29+ path : ${{ steps.pip-cache.outputs.dir }}
30+ key :
31+ ${{ matrix.python-version }}-v1-${{ hashFiles('**/setup.py') }}
32+ restore-keys : |
33+ ${{ matrix.python-version }}-v1-
34+ - name : Install dependencies
35+ run : |
36+ python -m pip install --upgrade pip
37+ python -m pip install --upgrade tox tox-gh-actions
38+ - name : Tox tests
39+ run : |
40+ tox -v
Load diff This file was deleted.
Original file line number Diff line number Diff line change 22
33[ ![ Travis Build Status] ( https://travis-ci.org/alma/alma-python-client.svg?branch=main )] ( https://travis-ci.org/alma/alma-python-client ) [ ![ PyPI] ( https://img.shields.io/pypi/v/alma-client.svg )] ( https://pypi.python.org/pypi/alma-client )
44
5- Python API Client for the Alma API
5+ Python API Client for the Alma API.
6+
7+ Support Python >= 3.8
68
79## Install
810
You can’t perform that action at this time.
0 commit comments