aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/qa.yaml
blob: f81ebab784415a99a7091b0ca0740b30788bd7e7 (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
name: QA
on: pull_request
jobs:
  qa:
    name: Run QA checks
    runs-on: ubuntu-latest
    strategy:
      matrix:
        python-version: ["3.7", "3.8", "3.9", "3.10"]
    steps:
      - uses: actions/checkout@v2
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v2
        with:
          python-version: ${{ matrix.python-version }}
      - name: Set up Node.js @latest
        uses: actions/setup-node@v2
        with:
          node-version: 16
      - name: Install the world
        run: |
          python -m pip install --upgrade pip wheel
          pip install -r requirements.txt
          pip install -r requirements_dev.txt
          pip install -e .
          npm i
      - name: Run linting
        run: |
          make lint
      - name: Run type checking
        run: |
          make check
      - name: Run tests
        run: make test