Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #17

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #17

Workflow file for this run

# 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