ext py 2 #50
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: "Check Manifest" | |
on: | |
push: | |
branches: | |
- main | |
release: | |
types: [published] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install prerequisites | |
run: sudo apt install libgeos3.10.2 libgeos-dev -y | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install cython | |
python -m pip install check-manifest | |
- name: Check manifest | |
run: | | |
check-manifest -v |