Skip to content

Grab handle from session instead of raw user input #10

Grab handle from session instead of raw user input

Grab handle from session instead of raw user input #10

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- run: deno test -A --unstable
env:
INTEGRATION_TESTS: true
POSTGRES_HOST: localhost
POSTGRES_PASSWORD: postgres