Skip to content

fix restart-vrchat.sh #6

fix restart-vrchat.sh

fix restart-vrchat.sh #6

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main, "release/*"]
jobs:
run_tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-22.04"]
python-version: ["3.10.12"]
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: List dependencies
run: |
python -m pip list
- name: Run pytest
run: |
poetry run pytest
- name: Run mypy
run: |
poetry run mypy --config-file=pyproject.toml .