Skip to content

update

update #90

Workflow file for this run

name: build
on:
push:
branches: ["main"]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Lint
run: ./scripts/ci/lint
- name: Install Dependencies
run: ./scripts/ci/install-deps
- name: Build
run: ./scripts/ci/build
- name: Test
run: ./scripts/ci/test