Skip to content

style: format README, LICENSE #3

style: format README, LICENSE

style: format README, LICENSE #3

Workflow file for this run

name: Main CI
on:
push:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x
- name: Verify formatting
run: deno fmt --check
- name: Lint
run: deno lint
- name: Test
run: deno test -A