Skip to content

antarcticrainforest is testing the cli 🧉 #2

antarcticrainforest is testing the cli 🧉

antarcticrainforest is testing the cli 🧉 #2

Workflow file for this run

name: CLI Test
run-name: ${{ github.actor }} is testing the cli 🧉
on: [push]
jobs:
linting-and-testing:
env:
NUMEXPR_MAX_THREADS: 8
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-versoin}}
-
name: Install packages
run: |
python3 -m pip install tox
mkdir .mypy_cache
-
name: Running tests with tox
run: tox -p 3 --parallel-no-spinner