simplify logo gen #355
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
# Run all the tests with the following conditions (single platform / version). | |
# - git push | |
# - pull request | |
# - dispatch | |
# | |
# Thomas Guillod - Dartmouth College | |
# Mozilla Public License Version 2.0 | |
name: Run Hook Tests | |
on: | |
# ===================== job triggers | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
# ===================== run the tests | |
default: | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 20 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install dependencies | |
shell: bash -el {0} | |
run: python -m pip install --requirement .github/envs/requirements.txt | |
- name: Run the tests | |
shell: bash -el {0} | |
run: ./.github/scripts/run_tests.sh |