Skip to content

🔒(deps): Bump torch from 2.0.0 to 2.2.0 #101

🔒(deps): Bump torch from 2.0.0 to 2.2.0

🔒(deps): Bump torch from 2.0.0 to 2.2.0 #101

Workflow file for this run

name: Automated Testing
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 2
matrix:
python-version: [ "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e ".[testing]"
python setup.py install
- name: Download latest model from GitHub Releases
run: |
curl -L -o models/LesNet.keras https://github.com/Thomasbehan/LesNet/releases/download/3.1.0/LesNet.keras
- name: Download some data for testing
run: |
python commands/run_data_scraper.py -p 2
- name: Lint with ruff
run: |
ruff check
- name: Test with pytest
run: |
python -m pytest