Skip to content

add test for enum classes used by weather forecast #9

add test for enum classes used by weather forecast

add test for enum classes used by weather forecast #9

Workflow file for this run

name: ci
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Set up python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1.3.4
with:
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root
- name: Install library
run: poetry install --no-interaction
- name: Activate virtual environment
run: source $VENV
- name: Lint with ruff
run: poetry run ruff check src tests
- name: Check code security with bandit
run: poetry run bandit -r src tests
- name: Typing with mypy
run: poetry run mypy --check src
- name: Doc format with docformatter
run: poetry run docformatter --check src tests
- name: Format with black
run: poetry run black --check src tests
- name: Test with pytest
run: poetry run pytest tests --cov=src