Skip to content

Set python 3.10 for CIs and HF deployment #17

Set python 3.10 for CIs and HF deployment

Set python 3.10 for CIs and HF deployment #17

Workflow file for this run

name: Tests
on:
push:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-20.04
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Check formatting
run: sh shell/lint.sh
- name: Run tests
run: pytest -v tests/