Merge pull request #127 from MarcoGorelli/pre-commit-ci-update-config #332
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: tox | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
tox: | |
strategy: | |
matrix: | |
python-version: ["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-tox | |
run: python -m pip install --upgrade tox virtualenv setuptools pip | |
- name: install-cython | |
run: python -m pip install -U --pre cython | |
- name: install-reqs | |
run: python -m pip install -r requirements-dev.txt -e . | |
- name: run-tox | |
run: pytest |