summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yaml
blob: 7ec86626705ea49453ce35449b2c04fa168b77e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: test

on:
  push: # any branch
  pull_request:
    branches: [master]

jobs:
  test-ubuntu:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version: [3.7, 3.8, 3.9, "3.10"]

    steps:
      - uses: actions/checkout@v2
      - name: Setup Python ${{ matrix.python-version }}
        uses: actions/setup-python@v1
        with:
          python-version: ${{ matrix.python-version }}
      - name: Install Dependencies
        run: |
          sudo apt remove python3-pip
          python -m pip install --upgrade pip
          python -m pip install . black isort mypy pytest readme_renderer
          pip list
      - name: Type Checker
        run: |
          mypy ptpython
          isort -c --profile black ptpython examples setup.py
          black --check ptpython examples setup.py
      - name: Run Tests
        run: |
          ./tests/run_tests.py
      - name: Validate README.md
        # Ensure that the README renders correctly (required for uploading to PyPI).
        run: |
          python -m readme_renderer README.rst > /dev/null