Skip to content

try to test on macos and windows #72

try to test on macos and windows

try to test on macos and windows #72

Workflow file for this run

name: Minimint
# Run this workflow every time a new commit pushed to your repository
on: push
jobs:
tester:
name: Test the code
runs-on: [ubuntu-latest, macos-latest, windows-latest]
strategy:
matrix:
python-version: [3.8, '3.10']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Python setup
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: 'x64'
- name: Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
pip install pylint
pip install pytest-cov
pip install coveralls
pip install .
- name: Test
run: |
pytest --cov=minimint -s
pylint -E --disable=E1101 py/minimint/*py
- name: Coveralls
if: ${{ success() }}
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}