very miscellaneous models (Mistral Large 2411, EVA Instruct 32B, Cydonia v1.3, Beepo) #101
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: Unstable Tests | |
on: | |
pull_request_target: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
paths: | |
- '**.py' | |
- '**.json' | |
- 'tox.ini' | |
- '.github/workflows/maintests.yml' | |
- '.github/workflows/prtests.yml' | |
- '.pre-commit-config.yaml' | |
- 'scripts/requirements.txt' | |
- 'scripts/requirements.dev.txt' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Run pre-commit | |
uses: pre-commit/action@v3.0.0 | |
verify-models-db: | |
env: | |
TESTS_ONGOING: "1" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Run validation | |
run: python convert.py |