Skip to content

Revert "trying to fix the windows error" #9

Revert "trying to fix the windows error"

Revert "trying to fix the windows error" #9

name: pre-commit
on:
pull_request:
push:
branches: [main]
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.1
typing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: astral-sh/setup-uv@v7
- run: uv run pyrefly check
tox:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v7
- name: Install tox
run: uv tool install tox --with tox-uv
- name: Test with tox
run: tox
env:
PLATFORM: ${{ matrix.platform }}