Skip to content

Change iter methods to the JS-idiomatic [Symbol.iterator] #10

Change iter methods to the JS-idiomatic [Symbol.iterator]

Change iter methods to the JS-idiomatic [Symbol.iterator] #10

Workflow file for this run

name: Deno
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: 2.3.3
- name: Verify formatting
run: deno fmt --check
- name: Run linter
run: deno lint
- name: Run tests
run: deno test -A