github.com/Azareal/Gosora@v0.0.0-20210729070923-553e66b59003/.travis.yml (about) 1 language: go 2 go: 3 - "1.13" 4 - "1.14" 5 - "1.15" 6 - "1.16" 7 - master 8 before_install: 9 - cd $HOME 10 - git clone https://github.com/Azareal/Gosora gosora 11 - cd gosora 12 - chmod -R 0777 . 13 - mv ./config/config_example.json ./config/config.json 14 - ./update-deps-linux 15 - ./dev-update-travis 16 - mv ./experimental/plugin_sendmail.go .. 17 install: true 18 before_script: 19 - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter 20 - chmod +x ./cc-test-reporter 21 - ./cc-test-reporter before-build 22 script: ./run-linux-tests 23 after_script: 24 - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT 25 addons: 26 mariadb: '10.3'