mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-08 08:53:40 +00:00
b6aa674b2a
Signed-off-by: deadprogram <ron@hybridgroup.com>
21 lines
501 B
YAML
21 lines
501 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
|
|
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
|