# Golang CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-go/ for more details version: 2 jobs: build: docker: - image: tinygo/tinygo-dev steps: - checkout - run: tinygo version - run: name: "Enforce Go Formatted Code" command: make fmt-check - run: name: "Run unit tests" command: make unit-test - run: name: "Run build and smoke tests" command: make smoke-test