Skip to content

Commit

Permalink
minor renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
entorb committed May 17, 2024
1 parent 3b9b97f commit dfbbd71
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Check out repository
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
Expand All @@ -27,16 +27,18 @@ jobs:
python-version: "3.12"
cache: "pip"

- name: Run pre-commit hooks
uses: pre-commit/[email protected]
# - name: Run pre-commit hooks
# uses: pre-commit/[email protected]

- name: Install dependencies
if: ${{ hashFiles('requirements.txt') != '' }}
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
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

0 comments on commit dfbbd71

Please sign in to comment.