Skip to content

chore: Appease Thy Linter #20

chore: Appease Thy Linter

chore: Appease Thy Linter #20

Workflow file for this run

name: Build, Lint and Test
on:
push:
branches: [main]
jobs:
predeploy:
name: Built, Lint and Test
strategy:
matrix:
go-version: [1.22.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- name: Lint
run: bun run lint
- name: Build
run: make build
- name: Test
run: bun test