Skip to content

remove snap

remove snap #209

Workflow file for this run

name: Deno
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
deno:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
run: curl -fsSL https://deno.land/install.sh | sh
- name: Run tests
run: deno fmt --check && deno lint && deno test --allow-net --parallel tests/
- name: Check coverage
run: deno run -A scripts/coverage.ts