Drop PyPI mock dependency; use unittest.mock instead #150
Workflow file for this run
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: Sure Tests | |
on: [push, pull_request] | |
jobs: | |
python: | |
name: "Python" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: | |
- "3.9" | |
- "3.7" | |
- "3.10" | |
- "3.11" | |
- "3.6" | |
- "3.8" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install python version | |
uses: gabrielfalcao/pyenv-action@v18 | |
with: | |
default: "${{ matrix.python }}" | |
command: pip install -U pip setuptools | |
- name: Install dependencies | |
run: pip install -r development.txt | |
- name: Install sure | |
run: pip install -e . |