mirror of https://github.com/VinGarcia/ksql.git
Try to fix some required env vars
parent
d18ed2b1ab
commit
0f2c6b3dd8
|
@ -5,12 +5,16 @@ on: push
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
services:
|
|
||||||
docker-in-docker:
|
|
||||||
image: docker:dind
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- name: Pull Postgres
|
||||||
|
run: docker pull postgres:14.0
|
||||||
|
- name: Pull MySQL
|
||||||
|
run: docker pull mysql:8.0.27
|
||||||
|
- name: Pull SQLServer
|
||||||
|
run: docker pull mcr.microsoft.com/mssql/server:2017-latest
|
||||||
- name: Run linters
|
- name: Run linters
|
||||||
run: go vet ./...
|
run: go vet ./...
|
||||||
- name: Run tests
|
- name: Run Tests
|
||||||
run: go test ./...
|
run: go test ./...
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue