sample workstation/IP values #32
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: Testing atomic-operator on macOS | |
on: | |
push | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Run Tests on macOS | |
run: | | |
sudo pip install -r requirements.txt | |
sudo pip install -r requirements-dev.txt | |
sudo python -m pytest | |
- name: Code Coverage on macOS | |
run: | | |
sudo python -m coverage run -m pytest | |
sudo python -m coverage report |