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 Windows | |
on: | |
push | |
jobs: | |
build: | |
runs-on: windows-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 | |
shell: pwsh | |
- name: Run Tests on Windows | |
run: | | |
start-process pwsh -verb runas | |
pip install -r requirements.txt | |
python -m pip install -r requirements-dev.txt | |
python -m pytest | |
python -m coverage run -m pytest | |
python -m coverage report | |
shell: cmd |