mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
move to Github Actions
This commit is contained in:
parent
3a3b4590c3
commit
3786f4462d
3 changed files with 38 additions and 20 deletions
33
.github/workflows/ci.yml
vendored
Normal file
33
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: ci
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
tags-ignore:
|
||||
- '*.*'
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: Tests
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: ['1.8', '1.9', '1.10', '1.11', '1.12', '1.13', '1.14', '1.15']
|
||||
steps:
|
||||
- name: Set up Go ${{ matrix.go-version }}
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
- name: Check out code into the Go module directory
|
||||
uses: actions/checkout@v2
|
||||
- name: Get dependencies
|
||||
run: |
|
||||
go get -v github.com/google/go-querystring/query
|
||||
go get -v github.com/h2non/gock
|
||||
cp .env.dist .env
|
||||
- name: Tests
|
||||
run: ./go.test.sh
|
||||
- name: Coverage
|
||||
run: bash <(curl -s https://codecov.io/bash)
|
15
.travis.yml
15
.travis.yml
|
@ -1,15 +0,0 @@
|
|||
language: go
|
||||
go:
|
||||
- '1.8'
|
||||
- '1.9'
|
||||
- '1.10'
|
||||
- '1.11'
|
||||
- '1.12'
|
||||
- '1.13'
|
||||
before_install:
|
||||
- go get -v github.com/google/go-querystring/query
|
||||
- go get -v github.com/h2non/gock
|
||||
- cp .env.dist .env
|
||||
script: ./go.test.sh
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
10
README.md
10
README.md
|
@ -1,8 +1,8 @@
|
|||
[](https://travis-ci.org/retailcrm/api-client-go)
|
||||
[](https://codecov.io/gh/retailcrm/api-client-go)
|
||||
[](https://github.com/retailcrm/api-client-go/releases)
|
||||
[](https://golang.org/dl/)
|
||||
[](https://godoc.org/github.com/retailcrm/api-client-go)
|
||||
[](https://github.com/retailcrm/api-client-go/actions)
|
||||
[](https://codecov.io/gh/retailcrm/api-client-go)
|
||||
[](https://github.com/retailcrm/api-client-go/releases)
|
||||
[](https://golang.org/dl/)
|
||||
[](https://godoc.org/github.com/retailcrm/api-client-go)
|
||||
|
||||
|
||||
# retailCRM API Go client
|
||||
|
|
Loading…
Add table
Reference in a new issue