This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to tag v1 in repository https://gitbox.apache.org/repos/asf/trafficcontrol.git
commit 6e36feba3a0f9b48643b157234a7caa344ac65b1 Author: ocket8888 <[email protected]> AuthorDate: Wed Oct 30 10:23:25 2019 -0600 added an action --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..35d1795245 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,13 @@ +name: CI + +on: [push] + +jobs: + build: + + runs-on: golang-latest + + steps: + - uses: actions/checkout@v1 + - name: Run a one-line script + run: go test -v lib/...
