Skip to content

Fix CI for Python 3.6 on Linux #279

Fix CI for Python 3.6 on Linux

Fix CI for Python 3.6 on Linux #279

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: pytest-subprocess-ci
defaults:
run:
shell: bash
expression: 2.0

Check failure on line 9 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / pytest-subprocess-ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 9, Col: 5): Unexpected value 'expression'
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
max-parallel: 4
matrix:
platform: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', 'pypy3.8']
steps:
- uses: actions/checkout@v3
- name: Install Python 3.6
if: matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.6'
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.6
- name: Setup Nox
if: not(matrix.platform == 'ubuntu-latest' && matrix.python-version == '3.6')
uses: wntrblm/nox@2022.11.21
with:
python-versions: ${{ matrix.python-version }}
- name: Run tests
run: |
nox -s tests-${{ matrix.python-version }}
env:
PLATFORM: ${{ matrix.platform }}
- name: Update coverage
if: matrix.python-version != 'pypy3.8'
uses: codecov/codecov-action@v1
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Nox
uses: wntrblm/nox@2022.11.21
- name: Run mypy
run: |
nox -s mypy
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Nox
uses: wntrblm/nox@2022.11.21
- name: Run flake8
run: |
nox -s flake8
check-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Nox
uses: wntrblm/nox@2022.11.21
- name: Build docs
run: |
nox -s docs