diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml new file mode 100644 index 000000000..f23bce665 --- /dev/null +++ b/.github/workflows/pytest.yml @@ -0,0 +1,32 @@ +name: ci + +on: + pull_request: + push: + branches: [main] + +jobs: + tox: + strategy: + matrix: + python-version: ["3.9", "3.10", "3.11", "3.12"] + os: [windows-latest, ubuntu-latest] + + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Cache multiple paths + uses: actions/cache@v3 + with: + path: | + ~/.cache/pip + $RUNNER_TOOL_CACHE/Python/* + ~\AppData\Local\pip\Cache + key: ${{ runner.os }}-build-${{ matrix.python-version }} + - name: install-reqs + run: python -m pip install --upgrade tox virtualenv setuptools pip -r requirements-dev.txt + - name: Run pytest + run: pytest tests --cov=narwhals --cov=tests --cov-fail-under=50 diff --git a/README.md b/README.md index 8d37e7ba0..9278f0831 100644 --- a/README.md +++ b/README.md @@ -140,3 +140,5 @@ Indeed, you may suspect that. ## Why "Narwhals"? Because they are so awesome. + +Thanks to [Olha Urdeichuk](https://www.fiverr.com/olhaurdeichuk) for the illustration! diff --git a/docs/assets/image.png b/docs/assets/image.png new file mode 100755 index 000000000..578bd2421 Binary files /dev/null and b/docs/assets/image.png differ diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 000000000..dcc57d5f6 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,7 @@ +covdefaults +pandas +polars +pre-commit +pyarrow +pytest +pytest-cov