Update check.yml #6
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 and Test Python Project | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
permissions: | |
contents: read | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 1 # 0 if you want to push to repo | |
- name: Python set up | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
cache: "pip" | |
- name: Run pre-commit hooks | |
uses: pre-commit/[email protected] | |
- name: Install dependencies | |
if: ${{ hashFiles('requirements.txt]') != false }} | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Install and run pytest | |
run: | | |
echo ${{ hashFiles('requirements.txt]') }} | |
cp src/rememberthemilk.toml.example src/rememberthemilk.toml | |
pip install pytest | |
pytest |