Skip to content

🔖 bump version to 1.4.1 #103

🔖 bump version to 1.4.1

🔖 bump version to 1.4.1 #103

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '12'
check-latest: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies (tf ${{ matrix.tf-version }} )
run: |
pip install -r requirements.txt
- name: Run Tests
run: |
python -m unittest discover -s ./bibtexparser/tests