mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
0a0f4986e4
* Upgrade GitHub Actions * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
40 lines
1.2 KiB
YAML
40 lines
1.2 KiB
YAML
on:
|
|
pull_request:
|
|
# Run only if a file is changed within the project_euler directory and related files
|
|
paths:
|
|
- "project_euler/**"
|
|
- ".github/workflows/project_euler.yml"
|
|
- "scripts/validate_solutions.py"
|
|
schedule:
|
|
- cron: "0 0 * * *" # Run everyday
|
|
|
|
name: "Project Euler"
|
|
|
|
jobs:
|
|
project-euler:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
- name: Install pytest and pytest-cov
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade pytest pytest-cov
|
|
- run: pytest --doctest-modules --cov-report=term-missing:skip-covered --cov=project_euler/ project_euler/
|
|
validate-solutions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
- name: Install pytest and requests
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade pytest requests
|
|
- run: pytest scripts/validate_solutions.py
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|