File: main.yml

package info (click to toggle)
python-questplus 2023.1-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 324 kB
  • sloc: python: 1,345; makefile: 18
file content (60 lines) | stat: -rw-r--r-- 1,525 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
# 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: Unit tests

on:
  # push:
  #   branches: ['**']
  pull_request:
    branches: ['**']
  create:
    branches: [main]
    tags: ['**']
  # schedule:
  #   - cron: "0 4 * * *"

jobs:
  test:

    strategy:
      fail-fast: false
      matrix:
        python-version: ["3.8", "3.9", "3.10", "3.11"]
        os: [ubuntu-latest, windows-latest, macos-latest]

    runs-on: ${{ matrix.os }}

    defaults:
      run:
        shell: bash

    steps:
    - uses: actions/checkout@v3
    - name: Set up Python ${{ matrix.python-version }}
      uses: actions/setup-python@v4
      with:
        python-version: ${{ matrix.python-version }}
    - name: Install dependencies
      run: |
        python -m pip install --upgrade pip wheel build
        python -m pip install pytest
    - name: Build sdist
      run: python -m build --sdist
    - name: Install sdist
      run: |
        pip install --no-deps dist/questplus-*.*
        pip uninstall --yes questplus
        rm -rf dist
    - name: Build wheel
      run: python -m build --wheel
    - name: Install wheel
      run: |
        pip install --no-deps dist/questplus-*.*
        pip uninstall --yes questplus
        rm -rf dist
    - name: Install questplus
      run: pip install .
    - name: Test with pytest
      run: |
        pytest