feat: allow passing explicit subset-ids and models to lds metric and benchmark #497
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
# .github/workflows/type-lint.yml | |
name: type-lint | |
on: pull_request | |
jobs: | |
type-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
cache: 'pip' | |
python-version: "3.11" | |
- name: Install tox-gh | |
run: pip install tox-gh | |
- name: Run linter | |
run: tox run -e lint | |
- name: Run mypy | |
run: tox run -e type |