Only one CE will be initially available at upcoming lapse of SE outage #157
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: Check Project FOS Precision | |
on: | |
pull_request: | |
branches: | |
- master | |
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_facility_has_institution_id/requirements.txt | |
- run: python ./.github/scripts/check_facility_has_institution_id/main.py |