Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .buildkite/pipeline.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
gofmt:
runs-on: ubuntu-latest
container: docker://golang:1.13
steps:
- uses: actions/checkout@v1
- name: run gofmt
run: test -z "$(gofmt -d . | tee /dev/stderr)"
gazelle:
runs-on: ubuntu-latest
container: docker://l.gcr.io/google/bazel:2.1.0
steps:
- uses: actions/checkout@v1
- name: run gazelle
run: bazel run :gazelle && git diff --exit-code HEAD --
build:
runs-on: ubuntu-latest
container: docker://l.gcr.io/google/bazel:2.1.0
steps:
- uses: actions/checkout@v1
- name: build
run: bazel build //...
1 change: 1 addition & 0 deletions pkg/buildevents/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ go_library(
"nodes.go",
"stream_parser.go",
],
foo='bar',
importpath = "github.com/buildbarn/bb-browser/pkg/buildevents",
visibility = ["//visibility:public"],
deps = [
Expand Down