Skip to content

bump version to 0.2.6 #16

bump version to 0.2.6

bump version to 0.2.6 #16

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.9, "3.10"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Install the package
run: flit install --symlink
- name: Run tests
run: |
pytest -v cicero/images.py
# taken out because it tests a rate-limited API
# pytest -v cicero/git.py