diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cd9375e..a675542 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,15 +20,25 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Set up Python uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} + - name: Install uv uses: astral-sh/setup-uv@v3 with: enable-cache: true + - run: make all + + - name: Check typos + if: ${{ matrix.os == 'ubuntu-latest' }} + uses: crate-ci/typos@master + with: + config: ./typos.toml + - name: Upload coverage reports to Codecov if: ${{ matrix.os == 'ubuntu-latest' }} run: |