Skip to content

add matrix test environment #1

add matrix test environment

add matrix test environment #1

Workflow file for this run

name: Cli Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run cli tests
run: |
cd up
pip install .
pytest tests/*.py