Skip to content

minor fix to makefile #451

minor fix to makefile

minor fix to makefile #451

Workflow file for this run

name: Checks
on:
workflow_dispatch:
pull_request:
branches:
- '*'
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: pycln
run: |
pip install pycln
pycln --check --all .
- name: isort
run: |
pip install isort
isort --check-only .
- name: black
run: |
pip install black
python -m black --check .
test:
name: Test
env:
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
runs-on: ubuntu-latest
strategy:
matrix:
versions:
- 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:
- uses: actions/checkout@v4
- 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
poetry add torch@${{ matrix.versions.torch }}+cpu --source torch_cpu
poetry install
- name: Check versions
run: |
poetry run python --version
poetry run python -m pip show torch
- name: Unit tests
run: make unit
- name: Notebook tests
run: make test_notebooks
- name: Test Tokenizer Hashes
run: make test_tok_hashes