src/leancheck: reorder functions #28
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
# CI script for python-leancheck | |
# | |
# 2024 Rudy Matela | |
# Distributed under the LGPL v2.1 or later (see the file LICENSE) | |
name: test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 # 2023-2024 | |
cache: 'pip' | |
- run: make --version | |
- run: python --version | |
- run: pip --version | |
- name: Install dependencies | |
run: | |
pip install pytest mypy validate-pyproject | |
- run: make test |