qlik-oss / enigma-go

Go library for consuming Qlik's Associative Engine.
MIT License
39 stars 12 forks source link

Include golang v1.17 as part of the integration tests in CCI #208

Closed wennmo closed 2 years ago

wennmo commented 3 years ago

With a released v1.17 of golang we should include it in the Circle CI testing pipeline. The current way of testing different versions in the config.yml can also probably simplified using the build matrix support, which would make it easier to add future versions as well.

workflows:
  build:
    jobs:
      - build:
          matrix:
            parameters:
              go_version:
                - "1.14"
                - "1.15"
                - "1.16"
                - "1.17"