mirror of
https://github.com/stashapp/stash.git
synced 2026-05-03 04:11:21 +02:00
* Add gql client generation files * Update dependencies * Add stash-box client generation to the makefile * Move scraped scene object matchers to models * Add stash-box to scrape with dropdown * Add scrape scene from fingerprint in UI
23 lines
237 B
YAML
23 lines
237 B
YAML
language: go
|
|
|
|
sudo: false
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
|
|
go:
|
|
- 1.11.x
|
|
- 1.12.x
|
|
- 1.13.x
|
|
- tip
|
|
|
|
before_install:
|
|
- go get golang.org/x/lint/golint
|
|
|
|
before_script:
|
|
- go vet ./...
|
|
- golint ./...
|
|
|
|
script:
|
|
- go test -v ./...
|