Bump hugo docker image to HUGO v0.134.2 #169
Workflow file for this run
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: Pytest | |
on: | |
# Runs on pull requests to check that the website is building without errors | |
pull_request: | |
# Only run if the push to main | |
push: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
# Build job | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout repo | |
- name: 🛒 Checkout | |
uses: actions/checkout@v4 | |
# Install pytest | |
- name: 🛠️ Install pytest | |
run: | | |
python3 -m pip install pytest pytest-mock | |
# Run tests | |
- name: 🚀 Run pytest | |
run: | | |
cd ./scripts/ | |
pytest |