1234567891011121314151617181920212223242526272829303132 |
- name: Metrix++ Tests
- on:
- push:
- pull_request:
- jobs:
- test:
- name: Test on ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
-
- strategy:
- matrix:
- python: [3.7, 3.8, 3.9, 3.10, 3.11, 3.12]
- os: [ubuntu-latest, windows-latest, macOS-latest]
- steps:
- - uses: actions/checkout@v2
- - name: Set up Python ${{ matrix.python }}
- uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python }}
- - name: Install dependencies
- run: |
- python -m pip install --upgrade pip
- pip install -r requirements.txt
- - name: Run tests
- run: |
- python metrix++.py test
|