Skip to content

in root

in root #75

Workflow file for this run

name: ci
on:
push:
jobs:
check:
strategy:
fail-fast: false
matrix:
check:
- format
- types
name: check ${{ matrix.check }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: bun check:${{ matrix.check }}