name: "pytest:py3 " on: push: branches: - '**' pull_request: branches: [ master ] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: python-version: [3.7, 3.8, 3.9] os: [ubuntu-latest, macOS-latest] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install wheel flake8 pytest pytest-cov pip install -r requirements.txt - name: Test with pytest run: | PYTHONPATH=. python -m pytest -v -s --cache-clear --cov=python-terraform tests