Skip to content

Latest finetuning changes #117

Latest finetuning changes

Latest finetuning changes #117

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run Tests
on:
push:
branches: [ "main" ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9"] # zoobot should support these (many academics not on 3.9)
experimental: [false]
include:
- python-version: "3.10" # test the next python version but allow it to fail
experimental: true
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest
pip install .[pytorch_m1,tensorflow]
- name: Test with pytest
run: |
pytest