Skip to content

Testing CI

Testing CI #9

Workflow file for this run

name: inatVisionAPI CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Use Python
uses: actions/setup-python@v4
with:
python-version: '3.11.6'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
coverage run -m pytest -s && coverage report --show-missing