Create new townsend-ap resource to reflect name change of AP #577
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: 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 |