Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

oslo polyfill

oslo polyfill #223

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
ci:
runs-on: ubuntu-20.04
strategy:
matrix:
bun-version: [latest]
timeout-minutes: 20
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Setup bun
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}
- name: Install dependencies
run: bun install
- name: Typecheck
run: bun run typecheck
- name: Lint
run: bun run lint
- name: Format check
run: bun run format:check