Skip to content

Update pep8-naming requirement from ^0.13.2 to ^0.14.1 #44

Update pep8-naming requirement from ^0.13.2 to ^0.14.1

Update pep8-naming requirement from ^0.13.2 to ^0.14.1 #44

name: pypi-deployment
on: [push]
jobs:
Main-Package:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11", "3.12"]
env:
OS: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install poetry
run: |
pip install poetry
- name: Configure Poetry
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry --version
poetry install
- name: Set up Google Cloud credentials
env:
GCP_SA_KEY: ${{ secrets.GCP_SA_KEY }}
run: |
echo "$GCP_SA_KEY" > gcp-key.json
echo "GOOGLE_APPLICATION_CREDENTIALS=${{ github.workspace }}/gcp-key.json" >> $GITHUB_ENV
- name: Generate coverage report
run: |
poetry run pytest -sv --cov=src/unicloud --cov-report=xml
- name: Upload coverage reports to Codecov with GitHub Action
uses: codecov/codecov-action@v3