Update ApelNormalFactor #2290
Workflow file for this run
This file contains hidden or 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 Project FOS Precision | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| schedule: | |
| - cron: '0 0 * * *' | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.repository, 'opensciencegrid/') | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.9.15 | |
| cache: 'pip' # caching pip dependencies | |
| - run: pip install -r ./.github/scripts/check_project_fos_precision/requirements.txt | |
| - run: python ./.github/scripts/check_project_fos_precision/main.py |