Skip to content

Bump freezegun from 1.2.2 to 1.4.0 #573

Bump freezegun from 1.2.2 to 1.4.0

Bump freezegun from 1.2.2 to 1.4.0 #573

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
strategy:
max-parallel: 6
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Set up Poetry cache for Python dependencies
uses: actions/cache@v3
if: startsWith(runner.os, 'Linux')
with:
path: ~/.cache/pypoetry
key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: ${{ runner.os }}-poetry-
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | POETRY_HOME="$HOME/.poetry" python - --yes
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry install -E protobuf --no-interaction
poetry show --tree
- name: Test poetry build step
run: poetry build
- name: Test with pytest
run: |
PACKAGENAME=$(poetry version | awk {'print $1'}) && pytest --cov=$PACKAGENAME/ tests -v
- name: Lint with flake8
run: |
PACKAGENAME=$(poetry version | awk {'print $1'}) && flake8 $PACKAGENAME/ tests/
- name: Type check with mypy
run: |
PACKAGENAME=$(poetry version | awk {'print $1'}) && mypy $PACKAGENAME/ tests/
- name: Codecov
run: |
codecov --token=${{ secrets.CODECOV_TOKEN }}