Skip to content

Bump version: 1.0.3 → 1.0.4 #127

Bump version: 1.0.3 → 1.0.4

Bump version: 1.0.3 → 1.0.4 #127

Workflow file for this run

name: Testing
on: [push, pull_request]
env:
FETCH_TOOL_CONFIG: ${{ github.workspace }}/config/testing.json
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install .[test]
- name: 🧪 - Testing
run: |
pytest -v