Skip to content

Bump pytest from 7.2.0 to 7.3.1 #542

Bump pytest from 7.2.0 to 7.3.1

Bump pytest from 7.2.0 to 7.3.1 #542

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: Build package
on:
push:
branches:
- master
- "v0.7"
pull_request:
branches:
- master
- "v0.7"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, "3.10"]
fail-fast: false
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/actions-poetry@v2.2.0
with:
poetry-version: 1.2.2
- name: Install dependencies
run: poetry install
- name: Test package building
run: |
poetry build