Update ci.yml

This commit is contained in:
Slipstream 2025-06-12 23:10:37 -06:00 committed by GitHub
parent b5ee8dc408
commit d0e55d3706
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,24 +22,16 @@ on:
jobs: jobs:
build: build:
runs-on: self-hosted runs-on: self-hosted
container:
image: disagreement-image:latest
options: --user runneruser
steps: steps:
- uses: actions/checkout@v4 - name: Checkout code
uses: actions/checkout@v4
- name: Set up Python - name: Run Pyright
uses: actions/setup-python@v5 run: pyright
with:
python-version: '3.13'
- name: Install dependencies - name: Run Tests
run: | run: pytest tests/
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
npm install -g pyright
- name: Run Pyright
run: pyright
- name: Run tests
run: |
pytest tests/