🧪 add memcache test

This commit is contained in:
Fenny
2020-11-05 09:44:33 +01:00
parent f965c69512
commit f7e5345bc3
7 changed files with 196 additions and 135 deletions
+18 -12
View File
@@ -1,18 +1,24 @@
on: [push, pull_request]
'on':
- push
- pull_request
name: SQLite3
jobs:
Tests:
strategy:
matrix:
go-version: [1.14.x, 1.15.x]
platform: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.platform }}
go-version:
- 1.14.x
- 1.15.x
platform:
- ubuntu-latest
- windows-latest
runs-on: '${{ matrix.platform }}'
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: cd ./sqlite3 && go test ./... -v -race
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: '${{ matrix.go-version }}'
- name: Fetch Repository
uses: actions/checkout@v2
- name: Run Test
run: cd ./sqlite3 && go test ./... -v -race