Bump ray from 0.8.7 to 2.8.1 #27
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: Collect OSS Metrics | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
collect-oss: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Collect OSS Metrics | |
env: | |
GITHUB_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
python scripts/annotate_oss.py | |
- name: Generate README from OSS projects | |
run: | | |
python scripts/generate_readme.py | |
- uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Commit new OSS Metrics | |
branch: ${{ github.head_ref }} | |
commit_user_name: Susheel Varma | |
commit_user_email: [email protected] | |
commit_author: Susheel Varma <[email protected]> |