Skip to content

Commit a182bc6

Browse files
committed
try out matrix testing
1 parent 0461d5c commit a182bc6

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,15 @@ jobs:
66
test:
77
name: Test Application
88
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: ["3.9", "3.11", "3.12"]
912
steps:
1013
- uses: actions/checkout@v4
11-
- name: Set up Python
14+
- name: Set up Python Python ${{ matrix.python-version }}
1215
uses: actions/setup-python@v5
1316
with:
14-
python-version: '3.12'
17+
python-version: ${{ matrix.python-version }}
1518
- name: Install dependencies
1619
run: |
1720
pip install --upgrade --upgrade-strategy eager -r requirements_dev.txt

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# pylobid
22

3+
[![Build the docs](https://github.com/csae8092/pylobid/actions/workflows/docs.yml/badge.svg)](https://github.com/csae8092/pylobid/actions/workflows/docs.yml)
4+
[![flake8 Lint](https://github.com/csae8092/pylobid/actions/workflows/lint.yml/badge.svg)](https://github.com/csae8092/pylobid/actions/workflows/lint.yml)
5+
[![Test](https://github.com/csae8092/pylobid/actions/workflows/test.yml/badge.svg)](https://github.com/csae8092/pylobid/actions/workflows/test.yml)
6+
7+
38
`pylobid` is a LOBID-REST-API client. [Lobid](https://lobid.org) is a web service providing data from the [GND](https://www.dnb.de/DE/Professionell/Standardisierung/GND/gnd_node.html) - Gemeinsame Normdatei of the German National Library.
49

510
- **Free software**: MIT license

0 commit comments

Comments
 (0)