Skip to content

Bump requests from 2.27.1 to 2.32.0 #169

Bump requests from 2.27.1 to 2.32.0

Bump requests from 2.27.1 to 2.32.0 #169

Workflow file for this run

name: Tests
on:
push:
branches: [ main, release/** ]
pull_request:
branches: [ main, release/** ]
jobs:
tests:
runs-on: ${{ matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout Code
uses: actions/checkout@v2
- run: git fetch --prune --tags --unshallow
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: "3.10"
- name: Setup Poetry
uses: Gr1N/setup-poetry@v7
- name: Install Packages
run: poetry install
- name: Run PyTest
run: poetry run pytest
- name: Test Build
run: |
poetry run python ./build_system/update_version.py
poetry run pyinstaller --onefile ./src/zeal_cli/__main__.py --name zeal-cli