diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..84e9fa4 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,31 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: 1.22.2 + + - name: Go Fmt + run: go fmt ./... + + - name: Go Vet + run: go vet ./... + + - name: Tests + run: go test -v ./... + + - name: Integration Tests + run: go test -v --tags=integration ./mint + - run: go test -v --tags=integration ./wallet diff --git a/crypto/bdhke_test.go b/crypto/bdhke_test.go index 3f1b3dd..d9bfa11 100644 --- a/crypto/bdhke_test.go +++ b/crypto/bdhke_test.go @@ -38,7 +38,6 @@ func TestHashToCurve(t *testing.T) { } } - func TestBlindMessage(t *testing.T) { tests := []struct { secret string @@ -170,8 +169,7 @@ func TestVerify(t *testing.T) { } } - -// Tests for deprecated HashToCurve +// Tests for deprecated HashToCurve func TestHashToCurveDeprecated(t *testing.T) { tests := []struct { message string @@ -228,4 +226,4 @@ func TestBlindMessageDeprecated(t *testing.T) { t.Errorf("expected '%v' but got '%v' instead\n", test.expected, B_Hex) } } -} \ No newline at end of file +} diff --git a/go.mod b/go.mod index 50807ee..7e9e811 100644 --- a/go.mod +++ b/go.mod @@ -7,7 +7,7 @@ require ( github.com/btcsuite/btcd/btcec/v2 v2.3.3 github.com/btcsuite/btcd/btcutil v1.1.5 github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 - github.com/elnosh/btc-docker-test v0.0.0-20240516172412-66d8d1782e3c + github.com/elnosh/btc-docker-test v0.0.0-20240523201318-f115b8e72433 github.com/gorilla/mux v1.8.0 github.com/joho/godotenv v1.5.1 github.com/lightningnetwork/lnd v0.17.4-beta.rc1 @@ -204,4 +204,4 @@ require ( sigs.k8s.io/yaml v1.3.0 // indirect ) -replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-display v1.30.0-hex-display +replace google.golang.org/protobuf => github.com/lightninglabs/protobuf-go-hex-display v1.30.0-hex-display \ No newline at end of file diff --git a/go.sum b/go.sum index cd3de8f..03cb068 100644 --- a/go.sum +++ b/go.sum @@ -183,8 +183,8 @@ github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4 github.com/docker/go-units v0.5.0/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk= github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= -github.com/elnosh/btc-docker-test v0.0.0-20240516172412-66d8d1782e3c h1:LXQMak0LIMl9CP+0bo3egNpKyM48RysgQgsemCuJ+d0= -github.com/elnosh/btc-docker-test v0.0.0-20240516172412-66d8d1782e3c/go.mod h1:5GQRdR6yg5zIuTV8ZM6bPsp1R10d7XJNQHys/knsXsg= +github.com/elnosh/btc-docker-test v0.0.0-20240523201318-f115b8e72433 h1:GpiTYDCIhyFtYZB1VzjXA9LQjnXzDw0GTbzEUmaDF6o= +github.com/elnosh/btc-docker-test v0.0.0-20240523201318-f115b8e72433/go.mod h1:5GQRdR6yg5zIuTV8ZM6bPsp1R10d7XJNQHys/knsXsg= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=