Add github actions and remove travis

This commit is contained in:
Eduard S
2020-04-14 14:10:04 +02:00
parent eb41fe0757
commit 14d09916cf
6 changed files with 211 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
package utils
import (
"fmt"
"math/bits"
"testing"
)
func TestShowArchBits(t *testing.T) {
fmt.Printf("Architecture is %v bits\n", bits.UintSize)
}