Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

[pre-commit.ci] pre-commit suggestions #94

[pre-commit.ci] pre-commit suggestions

[pre-commit.ci] pre-commit suggestions #94

Workflow file for this run

name: CI testing
# see: https://help.github.com/en/actions/reference/events-that-trigger-workflows
on:
# Trigger the workflow on push or pull request, but only for the master branch
push:
branches: [main]
pull_request:
branches: [main]
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macOS-10.15]
python-version: [3.8]
# Timeout: https://stackoverflow.com/a/59076067/4521646
timeout-minutes: 35
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip --version
pip install -e . -r tests/requirements.txt -U -q --find-links https://download.pytorch.org/whl/cpu/torch_stable.html
pip list
shell: bash
- name: Tests
run: python -m pytest tests/ -v