define InMemoryAccountContext_V2 as a separate class #572
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["*"] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
timeout-minutes: 1 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v3 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: 2.0.4 | |
- name: Verify formatting & other checks | |
run: make check | |
- name: Run tests | |
run: make test |