mirror of
https://github.com/status-im/go-sqlcipher.git
synced 2026-08-31 02:01:15 +00:00
24 lines
506 B
YAML
24 lines
506 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.13.x, 1.14.x, 1.15.x]
|
|
platform: [ubuntu-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Test
|
|
run: |
|
|
go get github.com/frankbraun/gocheck
|
|
export PATH=$GOPATH/bin:$PATH
|
|
make test
|