summaryrefslogtreecommitdiff
path: root/.github/workflows/pythonapp.yml
blob: c8d5fe5f5875a957362b6019bfe220bd0e83070a (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: pytest

on:
  push:
    branches:
      - master
  pull_request:
  schedule:
    - cron: '0 8 * * *'

jobs:
  test:
    name: 'Python ${{ matrix.python-version }} on ${{ matrix.os }}'
    runs-on: ${{ matrix.os }}
    env:
      PYTHONUNBUFFERED: 1
    strategy:
      matrix:
        python-version: ["3.10", "3.9", "3.8", "3.7"]
        os: [ubuntu-latest, windows-latest, macOS-latest]
    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 0
    - name: 'fetch main'
      run: |
        git fetch origin main
    - name: 'Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}'
      uses: actions/setup-python@v2
      with:
        python-version: '${{ matrix.python-version }}'

    - uses: actions/cache@v2
      with:
        path: ~/.cache/
        key: dot-cache-files

    - name: 'Install package'
      run: |
        pip3 install poetry
        make install

    - name: 'List installed packages'
      run: |
        poetry run pip freeze

    - name: 'Run tests with Python v${{ matrix.python-version }} on ${{ matrix.os }}'
      run: |
        make pytest

    - name: 'Upload coverage report'
      uses: codecov/codecov-action@v2
      with:
        fail_ci_if_error: false
        verbose: true