Skip to content

Merge pull request #38 from alexpdev/v0.3 #232

Merge pull request #38 from alexpdev/v0.3

Merge pull request #38 from alexpdev/v0.3 #232

Workflow file for this run

name: MacCI
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4.1.0
with:
python-version: ${{ matrix.python-version }}
- name: Display Python Version
run: python --version
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox
pip install -r requirements.txt
- name: Run Tests
run: |
tox