Skip to content

[pre-commit.ci] pre-commit autoupdate #229

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #229

# This file is managed by 'repo_helper'. Don't edit it directly.
---
name: macOS Tests
on:
push:
pull_request:
branches: ["master"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "macos-latest"
env:
USING_COVERAGE: '3.6,3.7,3.8'
strategy:
fail-fast: False
matrix:
python-version: ["3.6","3.7","3.8"]
steps:
- name: Checkout 🛎️
uses: "actions/checkout@v2"
- name: Setup Python 🐍
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: Install dependencies 🔧
run: |
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox tox-gh-actions virtualenv
- name: "Run Tests for Python ${{ matrix.python-version }}"
run: "python -m tox"