Skip to content

Commit

Permalink
Merge pull request #7 from signalsciences/lisa/add-gh-action
Browse files Browse the repository at this point in the history
Lisa/add gh action
lsmith500 authored May 28, 2021
2 parents 3db905f + 796606e commit b77324b
Showing 3 changed files with 33 additions and 19 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: lint
on:
push:
pull_request:

jobs:

build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
govers: [ 1.14, 1.16 ]
steps:

- name: Set up Go version
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.govers }}
id: go

- name: golint
run: |
go get -u golang.org/x/lint/golint
- name: Check out code into the Go module directory
uses: actions/checkout@v1

- name: Build
run: |
export PATH=$PATH:$(go env GOPATH)/bin
GOBIN=$PWD/bin make ci
10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

10 changes: 1 addition & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tlstext

[![Build Status](https://travis-ci.org/signalsciences/tlstext.svg?branch=main)](https://travis-ci.org/signalsciences/tlstext) [![Go Report Card](http://goreportcard.com/badge/signalsciences/tlstext)](http://goreportcard.com/report/signalsciences/tlstext) [![GoDoc](https://godoc.org/github.com/signalsciences/tlstext?status.svg)](https://godoc.org/github.com/signalsciences/tlstext) [![Coverage](http://gocover.io/_badge/github.com/signalsciences/tlstext)](http://gocover.io/github.com/signalsciences/tlstext) [![license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://raw.githubusercontent.com/signalsciences/tlstext/main/LICENSE)
[![Actions Status](https://github.com/signalsciences/tlstext/workflows/lint/badge.svg)](https://github.com/signalsciences/tlstext/actions) [![Go Report Card](http://goreportcard.com/badge/signalsciences/tlstext)](http://goreportcard.com/report/signalsciences/tlstext) [![GoDoc](https://godoc.org/github.com/signalsciences/tlstext?status.svg)](https://godoc.org/github.com/signalsciences/tlstext) [![Coverage](http://gocover.io/_badge/github.com/signalsciences/tlstext)](http://gocover.io/github.com/signalsciences/tlstext) [![license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat)](https://raw.githubusercontent.com/signalsciences/tlstext/main/LICENSE)


simple mapping of TLS Versions and Cipher Suites to strings
@@ -20,14 +20,6 @@ since they are dependent on the version of Go used.
The values are generated directly from the [IANA assignments](http://www.iana.org/assignments/tls-parameters/tls-parameters.xml#tls-parameters-4)


## :rotating_light: NOTICE :rotating_light:

Effective **May 17th 2021** the default branch will change from `master` to `main`. Run the following commands to update a local clone:
```
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -a
```
## Examples

0 comments on commit b77324b

Please sign in to comment.