Skip to content

Commit

Permalink
Create check_leaderboard_can_update.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
orionw authored Jul 11, 2024
1 parent bef8d2f commit 3afb68e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check_leaderboard_can_update.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: check_leaderboard_can_update

on:
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
lfs: true
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Run leaderboard updating code
run: |
python refresh.py

0 comments on commit 3afb68e

Please sign in to comment.