Skip to content

chore(deps-dev): bump cartopy from 0.23.0 to 0.24.1 #2

chore(deps-dev): bump cartopy from 0.23.0 to 0.24.1

chore(deps-dev): bump cartopy from 0.23.0 to 0.24.1 #2

Workflow file for this run

name: PR Tests
# プルリクエストが作成、更新、または再オープンされたときにトリガー
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
# リポジトリをチェックアウト
- name: Checkout
uses: actions/checkout@v4
# Poetry をインストール
- name: Install Poetry
run: pipx install poetry
# Python をセットアップ
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
# 必要な依存関係をインストール
- name: Install dependencies
run: poetry install --no-root
# テストを実行
- name: Build Sphinx
run: |
cd docs
poetry run make dirhtml