diff options
author | 2024-09-16 14:00:23 +0200 | |
---|---|---|
committer | 2024-09-16 14:00:23 +0200 | |
commit | efd1a4f717afa83d3d3609f0d70e4da151a8dc9b (patch) | |
tree | 246ae4c12f86f8866e5299ae39ba5c1feba0bce4 /vendor/github.com/k3a/html2text/.travis.yml | |
parent | [bugfix/chore] Always set the status sensitive if media + content-warning pre... (diff) | |
download | gotosocial-efd1a4f717afa83d3d3609f0d70e4da151a8dc9b.tar.xz |
[bugfix] Use better plaintext representation of status for filtering (#3301)
* [bugfix] Use better plaintext representation of status for filtering
* add new deps to readme
* lint
* update tests
* update regexes
* address review comments
* remove now unused xxhash
* whoops, wrong logger
* Merge branch 'main' into status_filtering_bugfix
* put cache in caches struct
* pain
Diffstat (limited to 'vendor/github.com/k3a/html2text/.travis.yml')
-rw-r--r-- | vendor/github.com/k3a/html2text/.travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/k3a/html2text/.travis.yml b/vendor/github.com/k3a/html2text/.travis.yml new file mode 100644 index 000000000..c9f214d59 --- /dev/null +++ b/vendor/github.com/k3a/html2text/.travis.yml @@ -0,0 +1,10 @@ +language: go +go: + - master +before_install: + - go get github.com/axw/gocov/gocov + - go get github.com/mattn/goveralls + - if ! go get github.com/golang/tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi +script: + - $HOME/gopath/bin/goveralls -service=travis-ci + |