File: tests.yml

package info (click to toggle)
loguru 0.7.3-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,568 kB
  • sloc: python: 13,164; javascript: 49; makefile: 14
file content (70 lines) | stat: -rw-r--r-- 1,881 bytes parent folder | download | duplicates (2)
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Tests

on:
  push:
  pull_request:
  schedule:
  - cron: 0 0 * * 0

jobs:
  tests:
    if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
    strategy:
      fail-fast: false
      matrix:
        os:
        - ubuntu-22.04
        python-version:
        - '3.7'
        - '3.8'
        - '3.9'
        - '3.10'
        - '3.11'
        - '3.12'
        - '3.13'
        - pypy-3.10
        allow-failure:
        - false
        include:
        - os: ubuntu-20.04
          python-version: '3.5'
          allow-failure: false
        - os: ubuntu-20.04
          python-version: '3.6'
          allow-failure: false
        - os: windows-2022
          python-version: '3.12'
          allow-failure: false
        - os: macos-13
          python-version: '3.12'
          allow-failure: false
        - os: ubuntu-22.04
          python-version: 3.14-dev
          allow-failure: true
    runs-on: ${{ matrix.os }}
    steps:
    - name: Checkout repository
      uses: actions/checkout@v4
    - name: Set up Python
      uses: actions/setup-python@v5
      with:
        python-version: ${{ matrix.python-version }}
      env:
        # Workaround for https://github.com/actions/setup-python/issues/866
        PIP_TRUSTED_HOST: pypi.python.org pypi.org files.pythonhosted.org
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip
        python -m pip install tox
    - name: Run tests
      run: |
        tox -e tests
      continue-on-error: ${{ matrix.allow-failure }}
    - name: Upload coverage to Codecov
      uses: codecov/codecov-action@v5
      with:
        token: ${{ secrets.CODECOV_TOKEN }}
        flags: ${{ matrix.os }}_${{ matrix.python-version }}
        verbose: true
        fail_ci_if_error: true
      continue-on-error: ${{ matrix.allow-failure }}