Merge pull request #5 from mivanit/add-py3.8-compat #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install linters | |
run: pip install pycln isort black | |
- name: Run Format Checks | |
run: make check-format | |
test: | |
name: Test and Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
versions: | |
- python: "3.8" | |
torch: "1.13.1" | |
- python: "3.9" | |
torch: "1.13.1" | |
- python: "3.10" | |
torch: "1.13.1" | |
- python: "3.10" | |
torch: "2.3.1" | |
- python: "3.11" | |
torch: "2.3.1" | |
- python: "3.12" | |
torch: "2.3.1" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.versions.python }} | |
- name: Install dependencies | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
poetry lock --check | |
export CUDA_VISIBLE_DEVICES=0 | |
poetry add torch@${{ matrix.versions.torch }}+cpu --source torch_cpu | |
poetry install --all-extras | |
- name: tests | |
run: make test | |
- name: lint | |
run: make lint |