chore(deps-dev): bump cartopy from 0.23.0 to 0.24.1 #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |