Skip to content

Bump requests from 2.30.0 to 2.31.0 (#439) #893

Bump requests from 2.30.0 to 2.31.0 (#439)

Bump requests from 2.30.0 to 2.31.0 (#439) #893

Workflow file for this run

name: Build the package
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Build
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
python-version: ["3.9"]
fail-fast: false
runs-on: ${{ matrix.os }}
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/[email protected]
with:
poetry-version: 1.3.2
- name: Install dependencies
run: poetry install
- name: Test package building
run: |
poetry build