diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..b945c5ae --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: go + +go: + - 1.19.6 + +sudo: true + +before_install: + - echo "Cloning repo..." + - git clone https://github.com/IBM/ibm-satellite-storage.git + - git checkout $TRAVIS_BRANCH + - cat test.txt + +script: + - make fmt \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..ca3db3ac --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +.PHONY fmt +fmt: + gofmt ./* \ No newline at end of file diff --git a/test.txt b/test.txt new file mode 100644 index 00000000..10055dae --- /dev/null +++ b/test.txt @@ -0,0 +1,2 @@ +This is a test file. +Second line of test file. \ No newline at end of file