mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-10 09:53:42 +00:00
c09f0a8075
Signed-off-by: Ron Evans <ron@hybridgroup.com>
19 lines
483 B
YAML
19 lines
483 B
YAML
# 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
|
|
working_directory: /usr/local/go/src/tinygo.org/x/drivers
|
|
steps:
|
|
- checkout
|
|
- run: tinygo version
|
|
- run:
|
|
name: "Enforce Go Formatted Code"
|
|
command: make fmt-check
|
|
- run:
|
|
name: "Run build and smoke tests"
|
|
command: make smoke-test
|