Merge pull request #8 from naved001/add-rate-for-a2-gpu #6
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: Validate rates file | |
on: | |
push: | |
paths: | |
- rates.yaml | |
pull_request: | |
paths: | |
- rates.yaml | |
jobs: | |
validate-rates-file: | |
name: Validate rates file | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Set up python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
pip install -e . | |
- name: Validate rates file | |
run: | | |
validate-rates-file -g rates.yaml |