Skip to content

Bump actions/checkout from 4 to 5 #59

Bump actions/checkout from 4 to 5

Bump actions/checkout from 4 to 5 #59

Workflow file for this run

on:
push:
branches: [main]
pull_request:
branches: [main]
name: CI Additional
jobs:
check-links:
name: Check markdown hyperlinks
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Markdown link check
uses: gaurav-nelson/github-action-markdown-link-check@v1
mypy:
name: Mypy
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Clone repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install xproj
run: |
python -m pip install -e .[test]
- name: Install mypy
run: |
python -m pip install mypy
- name: Run mypy
run: |
python -m mypy --install-types --non-interactive