Skip to content

Commit

Permalink
Merge pull request #465 from googlecodelabs/go-modules
Browse files Browse the repository at this point in the history
Fix issue where code blocks with language hint would mess up list item depth
  • Loading branch information
DragonRider0o0 authored Sep 16, 2020
2 parents a13e68d + 6574ef1 commit 2fc990e
Show file tree
Hide file tree
Showing 4 changed files with 386 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ git:
depth: 3
language: go
go:
- 1.9.x # need for App Engine
- 1.11.x # latest release because "master" is dev version
- 1.11.x # need for App Engine
env:
- BAZEL=0.18.1
before_install:
Expand All @@ -15,7 +14,8 @@ before_install:
./install.sh --user
rm -f install.sh
install:
- go get github.com/golang/lint/golint
- export GO111MODULE="on"
- go get golang.org/x/lint/golint
# Install protobuf dependencies
- go get -u github.com/golang/protobuf/protoc-gen-go
- curl -OL https://github.com/google/protobuf/releases/download/v3.7.1/protoc-3.7.1-linux-x86_64.zip
Expand All @@ -39,7 +39,7 @@ deploy:
on:
repo: googlecodelabs/tools
tags: true
go: 1.10.x # match the above; latest release
go: 1.11.x # match the above; latest release
skip_cleanup: true
file:
- claat/bin/claat-darwin-amd64
Expand Down
11 changes: 11 additions & 0 deletions claat/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/googlecodelabs/tools/claat

go 1.11

require (
github.com/russross/blackfriday/v2 v2.0.2-0.20200714164129-acedacffef10
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/x1ddos/csslex v0.0.0-20160125172232-7894d8ab8bfe
golang.org/x/net v0.0.0-20200904194848-62affa334b73
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43
)
Loading

0 comments on commit 2fc990e

Please sign in to comment.