Skip to content

Updates to the new entry point code from latest vapor. #12

Updates to the new entry point code from latest vapor.

Updates to the new entry point code from latest vapor. #12

Workflow file for this run

name: test
on:
- pull_request
env:
MAILGUN_API_KEY: test
SITE_API_URL: test
SITE_FRONTEND_URL: test
NO_REPLY_EMAIL: test
POSTGRES_HOSTNAME: postgres
jobs:
xenial:
container:
image: vapor/swift:5.6-xenial
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: vapor
POSTGRES_DB: vapor
POSTGRES_PASSWORD: password
steps:
- uses: actions/checkout@v1
- run: swift test --enable-test-discovery --sanitize=thread
bionic:
container:
image: vapor/swift:5.6-bionic
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_USER: vapor
POSTGRES_DB: vapor
POSTGRES_PASSWORD: password
steps:
- uses: actions/checkout@v1
- run: swift test --enable-test-discovery --sanitize=thread