Skip to content

Commit

Permalink
try out matrix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 committed Oct 28, 2024
1 parent 0461d5c commit a182bc6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,15 @@ jobs:
test:
name: Test Application
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
- name: Set up Python Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade --upgrade-strategy eager -r requirements_dev.txt
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# pylobid

[![Build the docs](https://github.com/csae8092/pylobid/actions/workflows/docs.yml/badge.svg)](https://github.com/csae8092/pylobid/actions/workflows/docs.yml)
[![flake8 Lint](https://github.com/csae8092/pylobid/actions/workflows/lint.yml/badge.svg)](https://github.com/csae8092/pylobid/actions/workflows/lint.yml)
[![Test](https://github.com/csae8092/pylobid/actions/workflows/test.yml/badge.svg)](https://github.com/csae8092/pylobid/actions/workflows/test.yml)


`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.

- **Free software**: MIT license
Expand Down

0 comments on commit a182bc6

Please sign in to comment.